Why does Facebook Graph API say my account is non-active?

Please read this article: Mark Zuckerberg apologises for Facebook’s ‘mistakes’ over Cambridge Analytica Cambridge University researcher named Aleksandr Kogan had used an app to extract the information of more than 50 million people, and then transferred it to Cambridge Analytica for commercial and political use. So facebook is changing its policies so that the personal … Read more

How can I post new comment with Graph API into Social Comments Box?

I can give you half the answer to this question, but still need the other half very much myself. You can post a reply to an existing comment within Social Comments box by finding its post_fbid. To get this you can use FQL such as: https://api.facebook.com/method/fql.query?query=SELECT post_fbid, id FROM comment WHERE object_id IN (SELECT comments_fbid … Read more

Facebook Graph API – how to get user country?

https://api.facebook.com/method/fql.query?format=json&query=SELECT%20current_location%20FROM%20user%20WHERE%20uid=4&access_token=<ACCESS_TOKEN> [ { “current_location”: { “city”: “Palo Alto”, “state”: “California”, “country”: “United States”, “zip”: “”, “latitude”: 37.4441, “longitude”: -122.163, “id”: 104022926303756, “name”: “Palo Alto, California” } } ] FQL Documentation