Rakesh Shetty
Rakesh Shetty

Reputation: 4568

Amazon MWS : Access denied Error for ListOrders

Yesterday my code was working and today when I again check it is throwing an error. I want to fetch the orders from amazon India for which I have used Orders.ListOrders API of Amazon MWS here is my code :

$action = 'ListOrders';

        $params = array(
                    'AWSAccessKeyId' => $data['aws_access_key'],
                    'Action' => $action,
                    'SellerId' => $data['merchant_id'],
                    'SignatureMethod' => "HmacSHA256",
                    'SignatureVersion' => "2",
                    'Timestamp'=> gmdate("Y-m-d\TH:i:s.\\0\\0\\0\\Z", time()),
                    'CreatedAfter'=> '2014-08-31T18:00:00Z',
                    'CreatedBefore'=> '2014-09-23T18:00:00Z',
                    'Version'=> "2013-09-01",
                    'MarketplaceId.Id.1' => $data['marketplace_id']
                );

        // 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/Orders/2013-09-01\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/Orders/2013-09-01" . '?' . $url_string . "&Signature=" . $signature;

        //echo $url;exit;

        $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);

        // Create DOM object and load eBay response
        $responseDoc = new DOMDocument();
        $responseDoc->loadXML($response);

        $response = simplexml_import_dom($responseDoc);

        //$parsed_xml = simplexml_load_string($response);

        //echo $url;exit;

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

Response :

SimpleXMLElement Object
(
    [Error] => SimpleXMLElement Object
        (
            [Type] => Sender
            [Code] => AccessDenied
            [Message] => Access denied
        )

    [RequestID] => 890a9075-2993-4063-be60-922c43bb8428
)
  1. What [Message] => Access denied error indicates ?

  2. It was working yesterday and today it is showing error why ?

  3. What should I do to make this work again ?

  4. It is working on Amazon scratchpad

Please help me on this. Thanks in advance.

Upvotes: 0

Views: 2461

Answers (1)

Hardik Solanki
Hardik Solanki

Reputation: 3195

Just put this curl option after curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0); and try again :

curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);

Upvotes: 1

Related Questions