Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to know which city a visitor of my web page comes from in the following way:

    1. If the visitor has a public Facebook profile,
       then return her Facebook location.
    2. Otherwise, return her location based on the IP address.

I know how to do (2). But is there a way to do (1)?

share|improve this question

3 Answers

up vote 1 down vote accepted

Without having them authorise your application, no.

Otherwise, a basic call to /USER_ID in the API will return their locale

share|improve this answer

Just question the Graph API for user.location – https://developers.facebook.com/docs/reference/api/user/

share|improve this answer

You can use MaxMind API to get user's location based on his IP http://www.maxmind.com/app/ip-location

And to get user's location from his profile you can use Graph API https://developers.facebook.com/docs/reference/api/user/

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.