У Facebook есть собственное определение города, так как я могу получить список всех мест, которые он считает городами.По штату или стране.
См. Второй ответ: Список стран и городов, которые будут использоваться в Facebook Graph API для таргетинга
To check what countries are available you could just get a response from this endpoint: URL: https://graph.facebook.com/API_VERSION/search?type=adgeolocation&location_types=['country'] HTTP_METHOD: GET You also have to set your access token in the URL. To just see the fields key and name and a larger quantity of countries without being paginated this would be the complete URL: https://graph.facebook.com/API_VERSION/search?type=adgeolocation&location_types=['country']&fields=key,name&limit=1000
Большое спасибо!