使用Etsy Listing API,我返回了与关键字匹配的列表,我可以毫无问题地对它们进行分页。
但是,我只想找到运送到英国的商品。
我尝试使用region
URL 参数,但我仍然得到只能运送到美国的物品。
有人可以帮助我了解我需要通过什么才能获得英国可运送的物品吗?
使用Etsy Listing API,我返回了与关键字匹配的列表,我可以毫无问题地对它们进行分页。
但是,我只想找到运送到英国的商品。
我尝试使用region
URL 参数,但我仍然得到只能运送到美国的物品。
有人可以帮助我了解我需要通过什么才能获得英国可运送的物品吗?
如果您只想使用可以运送到英国的商品,则必须查看商品的 ShippingInfo。我是这样做的:
$json = file_get_contents("https://openapi.etsy.com/v2/listings/active?keywords=ISBN®ion=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
$apiContent = file_get_contents("https://openapi.etsy.com/v2/listings/active?api_key=YOUR-API-KEY-HERE&includes=ShippingInfo(destination_country_name)");
$contentDecode = json_decode($apiContent, true);
$total=0;
foreach ($contentDecode['results'] as $row) {
if (isset($row['ShippingInfo'])) {
foreach ($row['ShippingInfo'] as $r) {
if ($r['destination_country_name'] == "United Kingdom") {
echo "<pre>";
print_r($row);
$total++;
}
}
}
}
echo $total;
?>
我使用includes=ShippingInfo(destination_country_name)参数来获取列表的运输详细信息。它获取将在哪个国家/地区交付列表。希望它对你有用。