Skip to content

Commit 7bd6bf9

Browse files
committed
ACP2E-2969: REST API unable to make requests with slash (/) in SKU when using Oauth1
1 parent 2ae7a2c commit 7bd6bf9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/internal/Magento/Framework/Oauth/Helper/Request.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ public function prepareRequest($httpRequest)
4545
);
4646
foreach ($oauthParams as $key => $value) {
4747
if ($key !== 'oauth_signature') {
48-
$oauthParams[rawurlencode($key)] = rawurlencode($value);
48+
$oauthParams[$key] = rawurlencode($value);
4949
}
5050
}
5151
return $oauthParams;

0 commit comments

Comments
 (0)