本文介绍了Etsy API 图片上传错误的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一个 oauth 连接 - 它适用于所有其他请求,但一个:上传图片列表.代码如下:
I have an oauth connection - it works well with all other requests, but one:upload image for listings.Here is the code:
$connection = $this->getEtsyConnection();
$imageApiUrl = 'https://openapi.etsy.com/v2/listings/'.$listingId.'/images';
$mimeType = mime_content_type($source_file);
$filesize = filesize($source_file);
$params = ['@image' => ''.$source_file.';type='.$mimeType, 'rank'=>1, 'overwrite'=>true, 'listing_id'=>intval($listingId) ];
$header = [
'Content-Type' => 'multipart/form-data',
];
try {
if ( file_exists( $source_file ) ) {
$connection->fetch($imageApiUrl, $params, OAUTH_HTTP_METHOD_POST, $header);
$json = $connection->getLastResponse();
print_r( json_decode($json, true) );
}
} catch (\OAuthException $e) {
$json = $connection->getLastResponse();
print_r( $json );
print_r( $params );
print_r( $header );
print_r( $connection->debugInfo );
print_r( $e->getMessage() );
}
但是,响应是:
"headers_recv" => """
HTTP/1.1 400 Bad Request\r\n
Server: Apache\r\n
Set-Cookie: uaid=uaid%3D02SXR92A2MZuWR1R4gUobQcxhvYR%26_now%3D1520781833%26_slt%3D2KFBr_F0%26_kid%3D1%26_ver%3D1%26_mac%3Dym0kPXlXkm33j2_65CRxbmbOVWQ5Cb7aM1aSZIWzihw.; expires=Thu, 11-Apr-2019 07:42:13 GMT; Max-Age=34186700; path=/; domain=.etsy.com; secure; HttpOnly\r\n
X-Etsy-Request-Uuid: EurHmFgGFL9b1gGn4HleCGHmwRd3\r\n
X-Error-Detail: The request body is too large\r\n
Cache-Control: private\r\n
Set-Cookie: zuaid=uaid%3D02SXR92A2MZuWR1R4gUobQcxhvYR%26_now%3D1520781833%26_slt%3DIpYGzeIk%26_kid%3D1%26_ver%3D1%26_mac%3DwMLVY4w5yOPNJ9uLZMSaJIbmYA1rbvw7eOoS25FRu30.; expires=Tue, 10-Apr-2018 15:23:53 GMT; Max-Age=2592000; path=/; domain=.etsy.com; secure; HttpOnly\r\n
Set-Cookie: user_prefs=kJV1qV14EKx95Oq3MxB4K75uceRjZACCqKVenDA6Oq80J0eHZCKWAQA.; expires=Mon, 11-Mar-2019 15:23:53 GMT; Max-Age=31536000; path=/; domain=.etsy.com\r\n
Content-Type: text/plain;charset=UTF-8\r\n
Content-Length: 29\r\n
Accept-Ranges: bytes\r\n
Date: Sun, 11 Mar 2018 15:23:53 GMT\r\n
Via: 1.1 varnish\r\n
Connection: close\r\n
X-Served-By: cache-hhn1532-HHN\r\n
X-Cache: MISS\r\n
X-Cache-Hits: 0\r\n
X-Timer: S1520781834.592519,VS0,VE351
"
"body_recv" => "The request body is too large"
我错过了什么?文件没有上传,收到上面的错误.
What am I missing? The file is not uploaded, and the error above is received.
推荐答案
经过多次尝试,我找到了使用 curl 的解决方法.我想我应该分享它,所以任何有同样问题的人都可以使用它.
After many tries, I found a workaround using curl. I thought I should share it, so anyone with the same problem can use it.
$oauth = new OAuth($api_key, $api_secret, OAUTH_SIG_METHOD_HMACSHA1, OAUTH_AUTH_TYPE_URI);
$oauth->setToken($access_token, $access_token_secret);
$url = "https://openapi.etsy.com/v2/listings/864452611/images";
$method = "POST";
$image_path = "/path/to/image.jpg";
$file = new \CURLFile($image_path, mime_content_type($image_path), basename($image_path));
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL,$url);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, array('image' => $file));
curl_setopt($ch, CURLOPT_HTTPHEADER, array(
'method' => $method,
'header' => 'Content-Type: multipart/form-data; boundary=' . microtime(true),
'header' => 'Authorization: ' . $oauth->getRequestHeader($method, $url)
));
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$server_output = curl_exec($ch);
print_r(json_decode($server_output, true));
curl_close ($ch);
这篇关于Etsy API 图片上传错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!