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!
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!
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 PHP.
curl -F 'access_token=...' \
-F 'message=Check out this funny article' \
https://graph.facebook.com/me/feed
You can find more information about this here: http://developers.facebook.com/docs/reference/api/post