开发者

Facebook Graph API: Feed publishing showing up as link type instead of status?

开发者 https://www.devze.com 2023-01-01 10:54 出处:网络
So I\'m publishing to a Facebook Group\'s Feed in my app, using the Graph API.开发者_运维知识库It works fine, except facebook keeps treating the published info as a \'link\' feed item type instead of

So I'm publishing to a Facebook Group's Feed in my app, using the Graph API. 开发者_运维知识库It works fine, except facebook keeps treating the published info as a 'link' feed item type instead of 'status' like it does when I enter the same from facebook's site.

eg:

string url = "https://graph.facebook.com/<id-of-group/feed?access_token=<access-token>";
string data = "message=hello";

webClient.UploadString(url, "POST", data);

Now when I pull the feed items, the json that is returned has "item":"link", with "link":"http://www.facebook.com", whereas I'd expect it to be "item":"status" and no or an empty "link" property.

Any ideas?


It was most likely a bug that has been fixed since then, the JSON works correctly now giving the correct type as

"type": "status", 

For more information on posting to groups see https://developers.facebook.com/docs/reference/api/group/#feed

0

精彩评论

暂无评论...
验证码 换一张
取 消