How can I update my facebook tatus messages through the API?
There are a lot of examples around the net but all of they seem to be deprecated with the New Facebook API.
Regards!
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
A status message is now just a post. So you using the Graph API to publish a post to the user. You basically just need to do an HTTP POST to http://graph.facebook.com/PROFILE_ID/feed. The POST body should contain the value for the message. If you want the status to change you must only set the message. Here is how you would do it with curl.
You can find more information about this here: http://developers.facebook.com/docs/reference/api/post