Skip to content

Commit e45113a

Browse files
authored
Merge pull request #10 from 77web/main
fixed signRegion setting for far east endpoints
2 parents 7ad9dd2 + 34a5963 commit e45113a

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

manifest/endpoints.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -56,13 +56,13 @@
5656
"fe": {
5757
"hostname": "agcod-v2-fe.amazon.com",
5858
"credentialScope": {
59-
"region": "eu-west-1"
59+
"region": "us-west-2"
6060
}
6161
},
6262
"fe-sandbox": {
6363
"hostname": "agcod-v2-fe-gamma.amazon.com",
6464
"credentialScope": {
65-
"region": "eu-west-1"
65+
"region": "us-west-2"
6666
}
6767
}
6868
}

src/AmazonIncentivesClient.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -375,14 +375,14 @@ protected function getEndpointMetadata(?string $region): array
375375
case 'fe':
376376
return [
377377
'endpoint' => 'https://agcod-v2-fe.amazon.com',
378-
'signRegion' => 'eu-west-1',
378+
'signRegion' => 'us-west-2',
379379
'signService' => 'AGCODService',
380380
'signVersions' => ['v4'],
381381
];
382382
case 'fe-sandbox':
383383
return [
384384
'endpoint' => 'https://agcod-v2-fe-gamma.amazon.com',
385-
'signRegion' => 'eu-west-1',
385+
'signRegion' => 'us-west-2',
386386
'signService' => 'AGCODService',
387387
'signVersions' => ['v4'],
388388
];

0 commit comments

Comments
 (0)