문제

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 )

도움이 되었습니까?

해결책

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.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top