【问题标题】:How to use PHP Curl::Easy to post a metafield to a product using Shopify API如何使用 PHP Curl::Easy 使用 Shopify API 将元字段发布到产品
【发布时间】:2012-08-27 09:30:12
【问题描述】:

我正在尝试使用以下代码将元字段值插入产品。但它给了

" HTTP/1.1 422 无法处理的实体服务器:nginx 日期:星期二,2012 年 8 月 21 日 20:23:46 GMT 内容类型:application/xml; charset=utf-8 传输编码:分块连接:保持活动状态:422 无法处理的实体 X-Shopify-Shop-Api-Call-Limit:1/500 HTTP_X_SHOPIFY_SHOP_API_CALL_LIMIT:1/500 位置:http://gmdtest.myshopify.com/admin/metafields 缓存控制:否-cache X-Request-Id: f25240474fd6f2868e24b9962c6c2d60 X-UA-Compatible: IE=Edge,chrome=1 X-Runtime: 0.108680 命名空间不能为空 命名空间太短(最少为 3 个字符) Key 不能为空 Key太短(最少 3 个字符) 值不能为空 值类型不能为空 值类型不在列表中

" 错误。任何帮助将不胜感激。

谢谢

<?php

class cURL {
var $headers;
var $user_agent;
var $compression;
var $cookie_file;
var $proxy;
//var $CURLOPT_SSL_VERIFYHOST;
function cURL($cookies=TRUE,$cookie='cookies.txt',$compression='gzip',$proxy='') {
$this->headers[] = 'Accept: image/gif, image/x-bitmap, image/jpeg, image/pjpeg';
$this->headers[] = 'Connection: Keep-Alive';
$this->headers[] = 'Content-type: application/x-www-form-urlencoded;charset=UTF-8';
$this->user_agent = 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.0.3705; .NET CLR 1.1.4322; Media Center PC 4.0)';
$this->compression=$compression;
$this->proxy=$proxy;
$this->cookies=$cookies;
//$this->CURLOPT_SSL_VERIFYHOST = 1;

if ($this->cookies == TRUE) $this->cookie($cookie);
}
function cookie($cookie_file) {
if (file_exists($cookie_file)) {
$this->cookie_file=$cookie_file;
} else {
fopen($cookie_file,'w') or $this->error('The cookie file could not be opened. Make sure this directory has the correct permissions');
$this->cookie_file=$cookie_file;
//fclose($this->cookie_file);
}
}
function get($url) {
$process = curl_init($url);
curl_setopt($process, CURLOPT_HTTPHEADER, $this->headers);
curl_setopt($process, CURLOPT_HEADER, 0);
curl_setopt($process, CURLOPT_USERAGENT, $this->user_agent);
if ($this->cookies == TRUE) curl_setopt($process, CURLOPT_COOKIEFILE, $this->cookie_file);
if ($this->cookies == TRUE) curl_setopt($process, CURLOPT_COOKIEJAR, $this->cookie_file);
curl_setopt($process,CURLOPT_ENCODING , $this->compression);
curl_setopt($process, CURLOPT_TIMEOUT, 30);
if ($this->proxy) curl_setopt($process, CURLOPT_PROXY, $this->proxy);
curl_setopt($process, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($process, CURLOPT_FOLLOWLOCATION, 1);
$return = curl_exec($process);
curl_close($process);
return $return;
}
function post($url,$data) {
$process = curl_init($url);
curl_setopt($process, CURLOPT_HTTPHEADER, $this->headers);
curl_setopt($process, CURLOPT_HEADER, 1);
curl_setopt($process, CURLOPT_USERAGENT, $this->user_agent);
if ($this->cookies == TRUE) curl_setopt($process, CURLOPT_COOKIEFILE, $this->cookie_file);
if ($this->cookies == TRUE) curl_setopt($process, CURLOPT_COOKIEJAR, $this->cookie_file);
curl_setopt($process, CURLOPT_ENCODING , $this->compression);
curl_setopt($process, CURLOPT_TIMEOUT, 30);
if ($this->proxy) curl_setopt($process, CURLOPT_PROXY, $this->proxy);
curl_setopt($process, CURLOPT_POSTFIELDS, $data);
curl_setopt($process, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($process, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt($process, CURLOPT_POST, 1);
$return = curl_exec($process);
curl_close($process);
return $return;
}
function error($error) {
echo "<center><div style='width:500px;border: 3px solid #FFEEFF; padding: 3px; background-color: #FFDDFF;font-family: verdana; font-size: 10px'><b>cURL Error</b><br>$error</div></center>";
die;
}
}
$cc = new cURL();

$data = '<?xml version="1.0" encoding="UTF-8"?><metafield><namespace>product_info</namespace><key>product_date</key><value type="string">21-9-2012</value><value-type>string</value-type></metafield>';


echo $cc->post('http://api_key:shared-secret@gmdtest.myshopify.com/admin/products/47140632/metafields.xml',$data);



?> 

【问题讨论】:

    标签: php shopify


    【解决方案1】:

    您将内容类型设置为编码格式而不是 XML,因此我们无法正确解析您的请求。

    【讨论】:

    • 您好,谢谢您的回复。我已将 code$this->headers[] = 'Content-type: application/x-www-form-urlencoded;charset=UTF-8';code 更改为 code$this->headers[] ='Content-type: text/xml;charset=UTF-8';code 但它显示以下错误“HTTP/1.1 400 Bad Request Server: nginx Date: Mon, 27 Aug 2012 12:09:25 GMT Content-类型:application/xml 传输编码:chunked 连接:keep-alive 状态:400 Bad Request X-Runtime: 0.005794 Start tag expected, '
    • 我认为数据只是作为 url 参数添加,而不是作为 cURL 的实际发布数据。
    • 对不起,我无法解决最后一个错误。你能解释一下吗?谢谢
    猜你喜欢
    • 2020-06-30
    • 2020-01-13
    • 2021-01-21
    • 1970-01-01
    • 1970-01-01
    • 2023-04-09
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多