Skip to content

Commit

Permalink
修正查詢訂單QueryTrade查詢會遇到CheckMacValue verify failed問題
Browse files Browse the repository at this point in the history
  • Loading branch information
AllennChang committed Dec 9, 2022
1 parent 5c9763c commit a07e1be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Response/VerifiedEncodedStrResponse.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class VerifiedEncodedStrResponse extends AbstractVerifiedResponse
*/
public function toArray($response)
{
parse_str($response, $parsed);
parse_str(str_replace('+', '%2B', $response), $parsed);

return $parsed;
}
Expand Down

0 comments on commit a07e1be

Please sign in to comment.