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.

Hi I have been trying to get the current location with fql from Graph API Explorer, but I got the following result:

  {
      "data": [
        {
          "current_location": null
        }
      ]
    }

I have made the following consult:

https://graph.facebook.com/fql?q=SELECT%20current_location%20FROM%20user%20WHERE%20uid=MYUID&access_token=MYACCESSTOKEN

It’s important to let you know that the access token I generate is made with the user_hometown and user_location permits needed. I wish to know how to do it properly. Thanks! Alberto

share|improve this question

1 Answer

user_hometown gives you access to the field hometown_location. Not much help here.

user_location permission gives you access to the field current_location. I was able to pull my current location out correctly. This is the setting found on your Living section of your user (http://www.facebook.com/USERNAME/info). I changed my current city, went back to the FQL and checked, and sure enough your FQL statement in your question tracked it.

You might be confusing current_location with last checkin location.

share|improve this answer
1  
Did this answer help you to find your solution to your question, if so, please accept this answer. See meta.stackoverflow.com/questions/5234/… for how to mark answers accepted. Thank you! – DMCS Apr 17 '12 at 21:20

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.