Facebook API:我可以获取有关用户位置的详细信息吗?
当我请求用户的个人资料时,该位置具有以下格式
When I requests user's profile, the location has the following format
Array([id] => 111227078906045 [name] =>某些城市,纽约)
Array ( [id] => 111227078906045 [name] => Some City, New York )
是否可以使用该ID来检索有关位置的完整信息, p>
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)
Array ( [country] => United States [state] => New York [city] => Some City )
在Graph API请求中使用此ID,即 https://图.facebook.com / Place_ID
- 这是你可以从Facebook得到的。城市和国家/地区位于名称
字段中。
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 the name
field.