我目前能够获得所有国家的列表和一个国家的地区列表(例如:美国的所有州)。如何获取一个地区所有城市的列表(例如:阿拉巴马州的所有城市)。
这就是我获得美国所有州的方式:
$result = TargetingSearch::search(
TargetingSearchTypes::GEOLOCATION,
null,
'',
[
'location_types' => ['region'],
'country_code' => 'US',
'limit' => 10000,
]);
return $result;