2013-03-12 121 views
0

我想用API在Sears marketplace中更新我的库存。PHP:使用cURL发送XML数据PUT

库存管理: 此API调用使用PUT方法来管理您的物品的库存水平为避免出错,库存更新应该只给那些成功处理项目进行注:。库存不自动递减,所以在接收和处理订单时更新库存非常重要。“

PUT网址:https://seller.marketplace.sears.com/SellerPortal/api/inventory/fbm-lmp/v6?email={emailaddress}&password={password}

XSD: https://seller.marketplace.sears.com/SellerPortal/s/schema/rest/inventory/import/v6/store-inventory.xsd?view=markup

示例XML:https://seller.marketplace.sears.com/SellerPortal/s/schema/samples/rest/inventory/import/v6/store-inventory.xml?view=markup

API文档:
http://searsmarketplace.force.com/articles/FAQ/XML-How-do-I-update-inventory?retURL=%2Fapex%2FknowledgeProduct%3Fc%3DContent%26k%3D&popup=false

我创建如下因素脚本,但不能正常工作:

$xml = '<?xml version="1.0" encoding="UTF-8"?> 
    <store-inventory 
     xmlns="http://seller.marketplace.sears.com/catalog/v2" 
     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
     xsi:schemaLocation="http://seller.marketplace.sears.com/SellerPortal/s/schema/rest/inventory/import/v2/store-inventory.xsd"> 
     <item item-id="10"> 
      <locations> 
       <location location-id="21"> 
        <quantity>20</quantity> 
        <pick-up-now-eligible>false</pick-up-now-eligible> 
       </location> 
      </locations> 
     </item> 
    </store-inventory>'; 

$ch = curl_init(); 
curl_setopt($ch, CURLOPT_VERBOSE, 1); 
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE); 
curl_setopt($ch, CURLOPT_URL, "https://seller.marketplace.sears.com/SellerPortal/api/inventory/fbm-lmp/v6?email={email}&password={pass}"); 
curl_setopt($ch, CURLOPT_PORT, 443); 
curl_setopt($ch, CURLOPT_PUT, 1); 
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); 
curl_setopt($ch, CURLOPT_POSTFIELDS,array($xml)); 
$http_result = curl_exec($ch); 
if($http_result){ 
    echo $http_result; 
}else{ 
    echo curl_error($ch); 
} 

curl_close($ch); 

curl_error:

Unknown SSL protocol error in connection to seller.marketplace.sears.com:443

我哪里错了?

+0

http://stackoverflow.com/questions/3958226/using-put-method-with-php-curl-library – 2013-03-12 09:52:27

+0

和你的问题是什么?错误的含义是什么?如果是这样,这里的信息可能是有用的:[3未知SSL协议错误的常见原因cURL (2010年3月18日,由Chris Mahns提供)](http://blog.techstacks.com/2010/03/3-common -causes-of-unknown-ssl-protocol-errors-with-curl.html) – hakre 2013-03-12 10:01:33

+0

另外'CURLOPT_POSTFIELDS'与PUT无关 – hakre 2013-03-12 10:06:38

回答

-1

你可以试试这个:

curl_setopt($ch, CURLOPT_FAILONERROR,1); 
curl_setopt($ch, CURLOPT_FOLLOWLOCATION,1); 
curl_setopt($ch, CURLOPT_RETURNTRANSFER,1); 
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); 
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); 
$result = curl_exec($ch); 
curl_close($ch);