Facebook API:如何更新状态?

时间:2010-10-23 21:59:02

标签: facebook

如何通过API更新我的Facebook状态消息?

网络上有很多例子,但所有这些例子似乎都被新Facebook API所弃用。

问候!

3 个答案:

答案 0 :(得分:2)

状态消息现在只是一个帖子。因此,您使用Graph API将帖子发布给用户。你基本上只需要对http://graph.facebook.com/PROFILE_ID/feed进行HTTP POST。 POST正文应包含消息的值。如果要更改状态,则只能设置消息。这是你如何用卷曲做的。

curl -F 'access_token=...' \
 -F 'message=Check out this funny article' \
 https://graph.facebook.com/me/feed

您可以在此处找到有关此内容的更多信息:http://developers.facebook.com/docs/reference/api/post

答案 1 :(得分:1)

使用 javascript graph api sdk也可以

    FB.api('/me/feed', 'post', { message: body }, function(response) {
    if (!response || response.error) {
    alert("error");
    } else {
     alert("Status posted");
    }

来源 - LINK

答案 2 :(得分:0)

//获取访问令牌和secret。并检查是否为true,而不是在条件下写下代码

url = "https://graph.facebook.com/me/feed?access_token=" + oAuth.Token;

json = oAuth.WebRequest(oAuthFacebook.Method.POST, url, "message=" + msg);