Facebook API:我可以获得有关用户位置的详细信息吗?
当我请求用户的个人资料时,该位置具有以下格式
数组([id] => 111227078906045 [name] => 纽约州某个城市)
是否可以使用该 ID 检索有关位置的完整信息,至少是这样的
Array ( [国家] => 美国 [州] => 纽约 [城市] => 某个城市 )
When I requests user's profile, the location has the following format
Array ( [id] => 111227078906045 [name] => Some City, New York )
Is it possible to use that ID to retrieve full information about location, at least something like this
Array ( [country] => United States [state] => New York [city] => Some City )
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在对 Graph API 的请求中使用此 ID,即
https://graph.facebook.com/Place_ID
- 这就是您可以从 Facebook 获得的全部信息。城市和国家位于name
字段中。Use this ID in a request to the Graph API, i.e.
https://graph.facebook.com/Place_ID
- that's all you can get from Facebook. The city and country are in thename
field.