How To Use the Graph API to Upload Photos to a user’s profile?

Can you "POST" changes to a user's Facebook profile via the Graph API?

  • For example; is it possible to edit the user's "bio" or "about me" section of their profile via the graph API?

  • Answer:

    My understanding is that the graph API is entirely read-only - at this point. I wonder what plans Facebook has in this direction ?

Roger Menday at Quora Visit the source

Was this solution helpful to you?

Other answers

http://developers.facebook.com/docs/reference/api/photo/ you have to do something like this: $result = $facebook->api(     '/me/feed/',     'post',     array(     'access_token' => $facebook->access_token,     'message' => 'Playing around with FB Graph API'     ) );

Marco Pugliese

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.