Update coupang.api.php

This commit is contained in:
Namhyeon Go 2021-05-22 05:31:40 +09:00 committed by GitHub
parent 8d8a27cf41
commit a0e3d27388
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -11,7 +11,7 @@ if(!is_fn("coupang_get_signature")) {
$algorithm = "HmacSHA256"; $algorithm = "HmacSHA256";
$signature = hmacsha256_sign_message($message, $SECRET_KEY); $signature = hmacsha256_sign_message($message, $SECRET_KEY);
return "CEA algorithm=HmacSHA256, access-key=" . $ACCESS_KEY.", signed-date=" . $datetime.", signature=" . $signature; return "CEA algorithm=HmacSHA256, access-key=" . $ACCESS_KEY . ", signed-date=" . $datetime . ", signature=" . $signature;
} }
} }