亚马逊提交 Feed 错误

2024-04-19

我想使用更新亚马逊上的数量Feed Api->Sumbit Feed (_POST_INVENTORY_AVAILABILITY_DATA_)

这是我的代码:

$action = 'SubmitFeed';
$path = $_SERVER['DOCUMENT_ROOT'].'/resources/amazon_xml/quantity.xml';

$feed = '<?xml version="1.0" ?><AmazonEnvelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="amzn-envelope.xsd">
                <Header>
                    <DocumentVersion>1.01</DocumentVersion>
                    <MerchantIdentifier>A3QPCC6I4V1QU3</MerchantIdentifier>
                </Header>
                    <MessageType>Inventory</MessageType>
                    <Message>
                        <MessageID>1</MessageID>
                        <OperationType>Update</OperationType>
                        <Inventory>
                            <SKU>6000013953</SKU>
                            <Quantity>1</Quantity>
                        </Inventory>
                    </Message>
                </AmazonEnvelope>';

$feedHandle = fopen($path, 'rw+');
fwrite($feedHandle, $feed);
rewind($feedHandle);

$params = array(
                    'AWSAccessKeyId' => $data['aws_access_key'],
                    'Action' => $action,
                    'Merchant' => $data['merchant_id'],
                    'SignatureMethod' => "HmacSHA256",
                    'SignatureVersion' => "2",
                    'Timestamp'=> gmdate("Y-m-d\TH:i:s.\\0\\0\\0\\Z", time()),
                    'Version'=> "2009-10-01",
                    'MarketplaceIdList.Id.1' => $data['marketplace_id'],
                    'FeedType'=> "_POST_INVENTORY_AVAILABILITY_DATA_",
                    'PurgeAndReplace'=> 'false',
                    'ContentMd5' => base64_encode(md5(stream_get_contents($feedHandle), true))
                );


        // Sort the URL parameters
        $url_parts = array();
        foreach(array_keys($params) as $key)
            $url_parts[] = $key . "=" . str_replace('%7E', '~', rawurlencode($params[$key]));

        sort($url_parts);

        // Construct the string to sign
        $url_string = implode("&", $url_parts);
        $string_to_sign = "GET\nmws.amazonservices.in\n" . $url_string;

        // Sign the request
        $signature = hash_hmac("sha256", $string_to_sign, $data['aws_secret_key'], TRUE);

        // Base64 encode the signature and make it URL safe
        $signature = urlencode(base64_encode($signature));



$url = "https://mws.amazonservices.in" . '?' . $url_string . "&Signature=" . $signature;

    $ch = curl_init();
    curl_setopt($ch, CURLOPT_URL,$url);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
    curl_setopt($ch, CURLOPT_TIMEOUT, 15);
    curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);
    $response = curl_exec($ch); 

        //echo $url;exit;

        echo '<pre>';
        print_r($response);
        echo '</pre>';
        exit;

但我收到以下回复:-

<ErrorResponse xmlns="https://mws.amazonservices.com/">
<Error>
<Type>Sender</Type>
<Code>SignatureDoesNotMatch</Code>
<Message>
The request signature we calculated does not match the signature you provided. Check your AWS Secret Access Key and signing method. Consult the service documentation for details.
</Message>
</Error>
<RequestID>105f88cb-76e2-49c0-9d33-83d6069dd119</RequestID>
</ErrorResponse>

有人可以告诉我如何将 xml 文件发送到 api 吗?或者我做错了什么?

quantity.xml文件正确

更新 :-

代码完美运行在亚马逊便签本 https://mws.amazonservices.in/scratchpad/index.html


亚马逊AWS的签名非常善变。版本2 http://docs.aws.amazon.com/general/latest/gr/signature-version-2.html要求您使用RFC 3986 https://www.rfc-editor.org/rfc/rfc3986对您的数据进行编码

添加查询字符串组件(名称-值对,不包括开头的问号 (?))作为 UTF-8 字符,它们是根据 RFC 3986 编码的 URL(十六进制字符必须大写)并使用字典字节顺序排序。字典字节顺序区分大小写。

您的问题似乎与签名的编码有关。

$signature = urlencode(base64_encode($signature));

这不符合 RFC 3986。PHP 有原始网址编码 http://www.php.net/manual/en/function.rawurlencode.php而是这样做。

$signature = rawurlencode(base64_encode($signature));
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系:hwhale#tublm.com(使用前将#替换为@)

亚马逊提交 Feed 错误 的相关文章

随机推荐