我已经创建了一个应用程序,现在我想使用新的Graph API在我的一个朋友墙上发布消息.这是可以吗?
我已经在使用oAuth和Graph-api来获取我所有朋友的列表.
http://developers.facebook.com/docs/api的API告诉我cURL https://graph.facebook.com/[userid]/feed来阅读Feed,但也告诉我如何发布消息:
curl -F 'access_token=[...]' -F 'message=Hello,Arjun. I like this new API.' https://graph.facebook.com/arjun/Feed
当然这不行!我不知道为什么..
require_once 'facebook.PHP'; // PHP-SDK downloaded from http://github.com/facebook/PHP-sdk $facebook = new Facebook(array(appId=>123,secret=>'secret')); $result = $facebook->api( '/me/Feed/',array('access_token' => $this->access_token,'message' => 'Playing around with FB Graph..') );
这个代码不会引发任何错误,我知道我的access_token是正确的(否则我无法运行$facebook-> api(‘/ me?access_token =’.$this-> access_token);获取我的用户对象.
有人在那里成功地使用Graph-api发布了一个消息?然后我需要你的帮助! 原文链接:https://www.f2er.com/php/139961.html