2012-09-27 139 views
2

我遇到了用於更新產品的「PUT」方法的問題。我得到了我讀過的404代表該產品不存在,儘管它確實如此。我已成功添加產品,因此我知道我的連接良好。更新產品:http_status_message =>未找到,但產品是否存在

目前,我的範圍設置爲盡我所能找到:,並將在dev完成後將其關閉。

var $scope = "write_products,write_content,write_themes,write_customers,write_orders,write_script_tags,write_shipping"; 

的API顯示更新網址爲:/admin/products/#123456789.json http://api.shopify.com/product.html#update

我使用了 「ohShpify」 PHP API接口。 我會問他們關於GitHub的問題,但看起來他們有評論和維基關閉。 https://github.com/cmcdonaldca/ohShopify.php/blob/master/shopify.php

對於那些誰感興趣的看着類:

<?php class ShopifyClient { 
public $shop_domain; 
private $token; 
private $api_key; 
private $secret; 
private $last_response_headers = null; 

public function __construct($shop_domain, $token, $api_key, $secret) { 
    $this->name = "ShopifyClient"; 
    $this->shop_domain = $shop_domain; 
    $this->token = $token; 
    $this->api_key = $api_key; 
    $this->secret = $secret; 
} 

// Get the URL required to request authorization 
public function getAuthorizeUrl($scope, $redirect_url='') { 
    $url = "http://{$this->shop_domain}/admin/oauth/authorize?client_id={$this->api_key}&scope=" . urlencode($scope); 
    if ($redirect_url != '') 
    { 
     $url .= "&redirect_uri=" . urlencode($redirect_url); 
    } 
    return $url; 
} 

// Once the User has authorized the app, call this with the code to get the access token 
public function getAccessToken($code) { 
    // POST to POST https://SHOP_NAME.myshopify.com/admin/oauth/access_token 
    $url = "https://{$this->shop_domain}/admin/oauth/access_token"; 
    $payload = "client_id={$this->api_key}&client_secret={$this->secret}&code=$code"; 
    $response = $this->curlHttpApiRequest('POST', $url, '', $payload, array()); 
    $response = json_decode($response, true); 
    if (isset($response['access_token'])) 
     return $response['access_token']; 
    return ''; 
} 

public function callsMade() 
{ 
    return $this->shopApiCallLimitParam(0); 
} 

public function callLimit() 
{ 
    return $this->shopApiCallLimitParam(1); 
} 

public function callsLeft($response_headers) 
{ 
    return $this->callLimit() - $this->callsMade(); 
} 

public function call($method, $path, $params=array()) 
{ 
    $baseurl = "https://{$this->shop_domain}/"; 

    $url = $baseurl.ltrim($path, '/'); 
    $query = in_array($method, array('GET','DELETE')) ? $params : array(); 
    $payload = in_array($method, array('POST','PUT')) ? stripslashes(json_encode($params)) : array(); 
    $request_headers = in_array($method, array('POST','PUT')) ? array("Content-Type: application/json; charset=utf-8", 'Expect:') : array(); 

    // add auth headers 
    $request_headers[] = 'X-Shopify-Access-Token: ' . $this->token; 

    $response = $this->curlHttpApiRequest($method, $url, $query, $payload, $request_headers); 
    $response = json_decode($response, true); 

    if (isset($response['errors']) or ($this->last_response_headers['http_status_code'] >= 400)) 
     throw new ShopifyApiException($method, $path, $params, $this->last_response_headers, $response); 

    return (is_array($response) and (count($response) > 0)) ? array_shift($response) : $response; 
} 

private function curlHttpApiRequest($method, $url, $query='', $payload='', $request_headers=array()) 
{ 
    $url = $this->curlAppendQuery($url, $query); 
    $ch = curl_init($url); 
    $this->curlSetopts($ch, $method, $payload, $request_headers); 
    $response = curl_exec($ch); 
    $errno = curl_errno($ch); 
    $error = curl_error($ch); 
    curl_close($ch); 

    if ($errno) throw new ShopifyCurlException($error, $errno); 
    list($message_headers, $message_body) = preg_split("/\r\n\r\n|\n\n|\r\r/", $response, 2); 
    $this->last_response_headers = $this->curlParseHeaders($message_headers); 

    return $message_body; 
} 

private function curlAppendQuery($url, $query) 
{ 
    if (empty($query)) return $url; 
    if (is_array($query)) return "$url?".http_build_query($query); 
    else return "$url?$query"; 
} 

private function curlSetopts($ch, $method, $payload, $request_headers) 
{ 
    curl_setopt($ch, CURLOPT_HEADER, true); 
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); 
    curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true); 
    curl_setopt($ch, CURLOPT_MAXREDIRS, 3); 
    curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, true); 
    curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 2); 
    curl_setopt($ch, CURLOPT_USERAGENT, 'HAC'); 
    curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 30); 
    curl_setopt($ch, CURLOPT_TIMEOUT, 30); 

    curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, $method); 
    if (!empty($request_headers)) curl_setopt($ch, CURLOPT_HTTPHEADER, $request_headers); 

    if ($method != 'GET' && !empty($payload)) 
    { 
     if (is_array($payload)) $payload = http_build_query($payload); 
     curl_setopt ($ch, CURLOPT_POSTFIELDS, $payload); 
    } 
} 

private function curlParseHeaders($message_headers) 
{ 
    $header_lines = preg_split("/\r\n|\n|\r/", $message_headers); 
    $headers = array(); 
    list(, $headers['http_status_code'], $headers['http_status_message']) = explode(' ', trim(array_shift($header_lines)), 3); 
    foreach ($header_lines as $header_line) 
    { 
     list($name, $value) = explode(':', $header_line, 2); 
     $name = strtolower($name); 
     $headers[$name] = trim($value); 
    } 

    return $headers; 
} 

private function shopApiCallLimitParam($index) 
{ 
    if ($this->last_response_headers == null) 
    { 
     throw new Exception('Cannot be called before an API call.'); 
    } 
    $params = explode('/', $this->last_response_headers['http_x_shopify_shop_api_call_limit']); 
    return (int) $params[$index]; 
} } 
class ShopifyCurlException extends Exception { } 
class ShopifyApiException extends Exception { 
protected $method; 
protected $path; 
protected $params; 
protected $response_headers; 
protected $response; 

function __construct($method, $path, $params, $response_headers, $response) 
{ 
    $this->method = $method; 
    $this->path = $path; 
    $this->params = $params; 
    $this->response_headers = $response_headers; 
    $this->response = $response; 

    parent::__construct($response_headers['http_status_message'], $response_headers['http_status_code']); 
} 

function getMethod() { return $this->method; } 
function getPath() { return $this->path; } 
function getParams() { return $this->params; } 
function getResponseHeaders() { return $this->response_headers; } 
function getResponse() { return $this->response; } 
} 
?> 

回答

0

溝從產品ID的#字符。

它在文檔中,因爲它是僞紅寶石語法,所以/admin/products/#{id}.json轉換爲/admin/products/123456789.json

+0

我也試過。我嘗試了一些配置來測試它。所有回來都是一樣的。 – vc27

+0

我發現問題與我的代碼。 我正在將「metafields」數組添加到要更新的產品中。顯然有更新的「metafields」,它不能在同一時間完成的東西。 我想我可能會每次更新兩個電話而不是一個。 – vc27