How to update the Tkinter graph?

How can I get a user's last status with the graph API/ FQL?

Royston Olivera at Quora Visit the source

Was this solution helpful to you?

Other answers

Calling https://graph.facebook.com/me/feed is not the best way to retrieve last status posted by a user, because /user/feed return all type of posts and then you must handle response to filter only type == status posts and very often if you limit=1 maybe will return the last link pubblished and all this fail. Maybe the best way is to make a fql query like this in js sdk with a facebook session active and with user_status permission: var query = FB.Data.query('SELECT uid, status_id, message, time FROM status WHERE uid = {0} limit 1', "THE_USER_ID");  query.wait(function(rows) {   console.log(rows) }); byebye

Dario Barilà

Related Q & A:

Just Added Q & A:

Find solution

For every problem there is a solution! Proved by Solucija.

  • Got an issue and looking for advice?

  • Ask Solucija to search every corner of the Web for help.

  • Get workable solutions and helpful tips in a moment.

Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.