Warning: file_get_contents(/data/phpspider/zhask/data//catemap/1/php/241.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Php ebay api获得大图像_Php_Image_Ebay Api - Fatal编程技术网

Php ebay api获得大图像

Php ebay api获得大图像,php,image,ebay-api,Php,Image,Ebay Api,我正在使用以下URL搜索易趣: http://open.api.ebay.com/shopping?callname=FindPopularItems&version=849&siteid=3&appid=app_id_removed8&MaxEntries=100&ItemSort=EndTime&ItemType=FixedPriceItem&IncludeSelector=SearchDetails&responseencod

我正在使用以下URL搜索易趣:

http://open.api.ebay.com/shopping?callname=FindPopularItems&version=849&siteid=3&appid=app_id_removed8&MaxEntries=100&ItemSort=EndTime&ItemType=FixedPriceItem&IncludeSelector=SearchDetails&responseencoding=XML&QueryKeywords=breaking+bad&HideDuplicateItems=true&outputSelector=PictureURLLarge&descriptionSearch=false
它可以工作,但是它返回的画廊图像太小了

e、 g

如何使其返回大图像

我读过:


这建议我添加
&outputSelector=PictureURLLarge&descriptionSearch=false
,但我得到了相同的响应。

FPI是一个旧的API调用,不支持新API调用允许的许多参数,例如输出选择器、项排序、描述搜索等

要获得更大的图像,您可能需要在缩略图URL上使用简单的暴力查找/替换

如果您将“8080”搜索/替换为“4040”或“9696”,您将获得更大的图像。现在在您的浏览器中尝试使用任何易趣物品,它应该可以正常工作


请参阅my上的“eBay API Gallery Image Resizing”,了解更多信息。

FPI是一个旧的API调用,不支持新API调用所允许的许多参数,例如输出选择器、项目排序、描述搜索等

要获得更大的图像,您可能需要在缩略图URL上使用简单的暴力查找/替换

如果您将“8080”搜索/替换为“4040”或“9696”,您将获得更大的图像。现在在您的浏览器中尝试使用任何易趣物品,它应该可以正常工作


请参阅我的主页上的“易趣API画廊图像大小调整”,了解更多信息。

哇,谢谢!我没有意识到我使用的是一个旧的API调用,我将研究使用一个更新的:)我还注意到我可以通过这样做拉入图像:谢谢你的帮助!哇,谢谢!我没有意识到我使用的是一个旧的API调用,我将研究使用一个更新的:)我还注意到我可以通过这样做拉入图像:谢谢你的帮助!