亚马逊MWS SubmitFeed - 致命错误:在非对象上调用成员函数asXML()

时间:2015-01-09 14:16:49

标签: php xml amazon-mws

我知道已经提出了类似的问题,但是,我已经尝试过这些解决方案而没有任何成功。我一直收到这个错误:

致命错误:在第188行的......中的非对象上调用成员函数asXML()

这是我的代码:

$dom->save("productInfo.xml");
$feedHandle = file_get_contents("productInfo.xml");

 $params = array(
'AWSAccessKeyId'=> "*****",
'Action'=>"SubmitFeed",
'SellerId'=> "********",
'SignatureMethod' => "HmacSHA256",
'SignatureVersion'=> "2",
'Timestamp'=> gmdate("Y-m-d\TH:i:s.\\0\\0\\0\\Z", time()),
'Version' => "2009-01-01",
'FeedContent' => $feedHandle,//must be a string
'FeedType' => "_POST_PRODUCT_DATA_");

 // 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.com\n/Feeds/2009-01-01\n" . $url_string;

  // Sign the request
$signature = hash_hmac("sha256", $string_to_sign, "******", TRUE);

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

$url = "https://mws.amazonservices.com/Feeds/2009-01-01" . '?' . $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);
  curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
  $response = curl_exec($ch);

  $parsed_xml = simplexml_load_string($response); 

  @fclose($feedHandle);

  Header('Content-type: text/xml');
  print($parsed_xml->asXML());

我知道$ parsed_xml === FALSE所以我知道XML的处理不起作用。我怀疑它与$ feedHandle有关,因为我之前收到的错误是数组$ params中的FeedContent为空。我知道xml格式正确,因为我打印出来并直接将它放在必填字段中,它工作正常。我们也在类似的文件中使用curl-ing并且工作正常,所以我认为这也不是问题。

1 个答案:

答案 0 :(得分:0)

我想评论一些事情。

  1. file_get_contents返回一个字符串,而不是文件句柄。在内部,它会打开一个文件句柄并自动关闭它。调用fclose()是不必要的,并且会失败,因为您的$feedHandle变量包含文件句柄(因此用词不当)。
  2. 我认为您需要POST XML Feed。我没有尝试使用GET,但使用GET请求发送Feed至少会limit the size of what you can send
  3. 您没有任何错误处理。您(不知何故)知道$parsed_xmlfalse,但没有更改您的代码。您的代码应为:
  4. if (!$parsed_xml) {
      echo "no XML";
    } else {
      Header('Content-type: text/xml');
      print($parsed_xml->asXML());
    }
    

    实际上,您想知道之前的步骤中发生了什么:您还需要从$response检查curl_exec()manual page on curl_exec()表示失败时会返回false

    if (!$response) {
        echo "curl_exec() failed with the following error: ".curl_error($ch);
    } else {
        $parsed_xml = simplexml_load_string($response); 
        if (!$parsed_xml) {
          echo "unable to parse response as XML: ".$response;
        } else {
          Header('Content-type: text/xml');
          print($parsed_xml->asXML());
        }
    }
    

    一旦你完成了这一点,你应该得到一种比asXML()不是false的成员函数更有帮助的评论。