Facebook publish to feed



最近我正在使用facebook的Graph API,我已经准备好了身份验证,尽管发布到我自己的feed给我带来了困难。

我正试图找到正确的URL来做到这一点,因为我正在使用MonoTouch,唯一的发布方法是使用webrequest。我试图检查API说什么,但它不是很清楚,我正在尝试以下url:

https://graph.facebook.com/myusername/feed?access_token=mytoken?message=testmessage

我做错了什么?

提前感谢!

您缺少参数method,其值为post

试试这个:

https://graph.facebook.com/myusername/feed?method=post& access_token = mytoken&消息= testmessage

最新更新