在 Facebook FQL 中列出一个国家/地区的所有城市
当我使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我发现为什么城市名称不匹配。尽管土耳其没有州地理定义,但 current_location 的州部分中存在正确的城市名称。只是你必须将它们设为ascii。
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.