既存の Etsy リストに画像を追加しようとしています。シンプルなはずですよね?しかし、私はここの API コードに従っています: https://www.etsy.com/developers/documentation/reference/listingimage
そして、内部サーバー 500 エラー応答を取得しています。
このエラーの意味がわかりません。誰?
これが私のコードです:
<?php
$oauth = new OAuth(OAUTH_CONSUMER_KEY, OAUTH_CONSUMER_SECRET);
$oauth->enableDebug();
$oauth->setToken($access_token, $access_token_secret);
$listing_id = 245891757
$filename = 161784082898-0.JPG;
$mimetype="image/jpeg";
try {
$source_file = dirname(realpath(__FILE__)) ."/$filename";
$url = "https://openapi.etsy.com/v2/listings/".$listing_id."/images";
$params = array('image' => '@'.$source_file.';type='.$mimetype);
$oauth->fetch($url, $params, OAUTH_HTTP_METHOD_POST);
$json = $oauth->getLastResponse();
print_r(json_decode($json, true));
} catch (OAuthException $e) {
// You may want to recover gracefully here...
print "<br><br>".$oauth->getLastResponse()."\n";
print_r($oauth->debugInfo);
die($e->getMessage());
}
?>