gpt4 book ai didi

php - Etsy PHP API - 交付选项

转载 作者:可可西里 更新时间:2023-10-31 23:28:58 26 4
gpt4 key购买 nike

使用 Etsy Listing API,我返回了与关键字匹配的列表,我可以毫无问题地对它们进行分页。

但是,我只想查找配送至英国的列表。

我已尝试使用 region URL 参数,但我仍然收到只能运送到美国的商品。

有人可以帮助我了解我需要通过什么才能获得英国可运送的元素吗?

最佳答案

如果您只想使用可以运送到英国的列表,则必须查看列表的 ShippingInfo。这是我的做法:

$json = file_get_contents("https://openapi.etsy.com/v2/listings/active?keywords=ISBN&region=GB&includes=ShippingInfo(destination_country_id)&api_key=");
$listings = json_decode($json, true);
foreach($listings['results'] as $listing) {
if (isset($listing['ShippingInfo'])) {
foreach ($listing['ShippingInfo'] as $shipping) {
if ($shipping['destination_country_id'] == 105) {
//this listing ships to UK
print_r($listing);
}
}

}
}

关于php - Etsy PHP API - 交付选项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35315047/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com