在 Facebook FQL 中列出一个国家/地区的所有城市

发布于 2024-11-19 01:20:16 字数 384 浏览 1 评论 0原文

当我使用 FQL 查询时,它列出的城市与原始名称不同。

FB.Data.query(select current_location from user where uid={0}, response.id);

例如,

------------------------------
fql returns  |  Original name
----------------------------
Urfa            Şanlıurfa
-----------------------------
Istanbul        İstanbul

有没有办法列出一个国家(土耳其)的所有城市?查找表也可以。

When I query with FQL it list cities different than original names .

FB.Data.query(select current_location from user where uid={0}, response.id);

For example

------------------------------
fql returns  |  Original name
----------------------------
Urfa            Şanlıurfa
-----------------------------
Istanbul        İstanbul

İs there any way to list all cities for a Country (Turkey)? A lookup table will be fine too.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

若无相欠,怎会相见 2024-11-26 01:20:16

我发现为什么城市名称不匹配。尽管土耳其没有州地理定义,但 current_location 的州部分中存在正确的城市名称。只是你必须将它们设为ascii。

current_location.state

I found why city names are not matched. Although there is no state geo definition in Turkey correct city names are exist in state part of the current_location. Only you have to make them ascii.

current_location.state
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文