我的问题是上传xml文件在url应该上传后饲料创建,但每次我得到错误SignatureDoesNotMatch
我试图上传xml文件的网址,我从请求createFeedDocument
https://developer-docs.amazon.com/sp-api/docs/feeds-api-v2021-06-30-use-case-guide
public function createFeedDocument($distributionChannelTeamId){
$response = Http::withHeaders([
'x-amz-access-token'=> $this->getAccessToken($distributionChannelTeamId),
])->post(
'https://sellingpartnerapi-eu.amazon.com/feeds/2021-06-30/documents',
[
"contentType"=> "text/tab-separated-values; charset=UTF-8"
]
);
Log::channel('amazon')->info('Amazon create feed document response: ', ['response' => $response->json()]);
if($response->successful()){
$body = $response->json();
return $body;
}else{
Log::channel('amazon')->info('Amazon create feed document failed for distribution channel team id: ' . $distributionChannelTeamId);
Log::channel('amazon')->info('Amazon create feed document failed: ', ['response' => $response->json()]);
}
}`
字符串
然后,我得到这样的回应,只是对我的真实的销售帐户(这是例子)
{
"feedDocumentId": "3d4e42b5-1d6e-44e8-a89c-2abfca0625bb",
"url": "https://d34o8swod1owfl.cloudfront.net/Feed_101__POST_PRODUCT_DATA_.xml"
}
型
然后我想把它上传到文件中,就像docs说的:
public function createFeed($distributionChannelTeamId)
{
$res=$this->createFeedDocument($distributionChannelTeamId);
$url=$res['url'];
$feedDocumentId=$res['feedDocumentId'];
$prefixAmazon = Storage::disk('amazon')->getDriver()->getAdapter()->getPathPrefix();
$requestXml = file_get_contents($prefixAmazon . 'createFeed.xml');
$response = Http::withHeaders(['Content-Type' => 'text/xml'
])->post($url,[
'body' => utf8_encode($requestXml)
]);
Log::channel('amazon')->info('Amazon create feed response: ', ['response' => $response]);`
型
我在日志中得到了这个,因为请求是403
,亚马逊创建提要响应:
{"response ":{" Illuminate\Http\Client\Response":"SignatureDoesNotMatch
我们计算的请求签名与您提供的签名不匹配。请检查您的密钥和签名方法。AKIAX2ZVOZFBB4YFXXHUAWS4-HMAC-SHA256 20231031T161031Z 20231031/eu-west-1/s3/aws4_请求93dfa574b9431ebb05c7c80589f14946f14741d8ca907ea25415a189 1c25965aa30675d84223aea473a1772fc2907ce7a9c7b3a4575aad2ee 2549665992d866841 57 53 34 2d 48 4d 41 43 2d 53 48 41 32 35 36 0a 32 30 32 33 31 30 30 3 31 54 31 36 31 30 33 31 5a 0a 32 30 32 33 31 30 33 31 2f 65 75 2d 77 65 73 74 2d 31 2f 73 33 2f 61 77 7 73 34 5f 72 65 71 75 65 73 74 0a 39 33 64 66 61 35 37 34 62 39 34 33 31 65 62 62 30 35 63 37 63 37 8 30 35 38 39 66 31 34 39 34 36 66 31 34 37 34 31 64 38 63 61 39 30 37 65 61 32 35 34 31 35 61 31 38 39 31 63 32 35 39 36 35 61POST/3e46e671 - 9500 - 49c1 - 8920 - 18a4732287c9.amzn1.tortuga.4.eu.T1OBJR31A06AXO X-Amz-Algorithm = AWS4-HMAC-SHA256 & X-Amz-Credential = AKIAX2ZVOZFBB4YFXXHU % 2F20231031% 2Feu-west-1%2Fs3% 2Faws4_request & X-Amz-Date = 20231031T161031Z & X-Amz-Expires = 300 & X-Amz-SignedHeaders = content-type % 3B主机content-type:text/xml主机:www.example.com content-type;tortuga-prod-eu.s3-eu-west-1.amazonaws.com有效载荷50 4f 53 54 0a 2f 33 65 34 36 65 36 37 31 2d 39 35 30 2d 34 39 63 31 2d 38 39 32 30 2d 31 38 61 34 37 33 32 32 38 37 63 39 2e 61 6d 7a 6e 31 2e 74 6f 72 74 75 67 61 2e 34 2e 65 75 2e 54 31 4f 42 4a 52 33 31 41 30 36 41 58 4f 0a 58 2d 41 6d 7a 2d 41 6c 67 6f 72 69 74 68 6d 3d 41 57 53 34 2d 48 4d 41 43 2d 53 48 41 32 35 36 26 58 2d 41 6d 7a 2d 43 72 65 64 65 6e 74 69 61 6c 3d 41 4b 49 41 58 32 5a 56 4f 5a 46 42 42 34 59 46 58 58 48 55 25 32 46 32 30 32 33 31 30 33 31 25 32 46 65 75 2d 77 65 73 74 2d 31 25 32 46 73 33 25 32 46 61 77 73 34 5f 72 65 71 75 65 73 74 26 58 2d 41 6d 7a 2d 44 61 74 65 3d 32 30 32 33 31 30 33 31 54 31 36 31 30 33 31 5a 26 58 2d 41 6d 7a 2d 45 78 70 69 72 65 73 3d 33 30 30 26 58 2d 41 6d 7a 2d 53 69 67 6e 65 64 48 65 61 64 65 72 73 3d 63 6f 6e 74 65 6e 74 2d 74 79 70 65 25 33 42 68 6f 73 74 0a 63 6f 6e 74 65 6e 74 2d 74 79 70 65 3a 74 65 78 74 2f 78 6d 6c 0a 68 6f 73 74 3a 74 6f 72 74 75 67 61 2d 70 72 6f 64 2d 65 75 2e 73 33 2d 65 75 2d 77 65 73 74 2d 31 2e 61 6d 61 7a 6f 6e 61 77 73 2e 63 6f 6d 0a 0a 63 6f 6e 74 65 6e 74 2d 74 79 70 65 3b 68 6f 73 74 0a 55 4e 53 49 47 4e 45 44 2d 50 41 59 4c 4f 41 44FEWNEPN090HEGZVTvmwWxEA8m500fDCGb9NXTXeYVrE + GRFih0e/3RppPUc243qA5QEA80aCCQsC0MM/h9gNQ4cUYGT0BLYboiz + mw =="}}
1条答案
按热度按时间sd2nnvve1#
我在Laravel中使用Amazon SP-API(https://github.com/amazon-php/sp-api-sdk)找到了这个创建产品提要的解决方案:
字符串