我只是想让PHP Connector连接到Facebook,以便在页面上发布墙上的帖子。 所以我不是想把墙贴发布到个人资料墙或其他任何东西上。
我已经阅读了一些教程和手册,我决定使用Facebook PHP-SDK(来自Naitik Shah) https://github.com/facebook/php-sdk/
我创建了Facebook App,通过它发布了wallposts。我收到了appId
和api secret
。我已经为我的页面添加了应用程序权限并尝试了示例代码
$facebook = new Facebook(array(
'appId' => 'my app id',
'secret' => 'my api secret',
'cookie' => false,
'domain' => 'domain.com'
));
domain.com =>我正在发送api请求的域名 下一个 - >
$facebook->getSession();
$token = $facebook->getAccessToken();
$facebook->api('/123456789/feed', array(
'access_token' => $token,
'link' => 'http://www.example.com'
));
所以我试图在ID为123456789
请求没有警告/错误,但没有在正确的位置发布任何内容,也没有返回任何内容。
感谢您对此问题的任何想法。
使用过的教程:
How do you post to the wall on a facebook page (not profile)
http://blog.theunical.com/facebook-integration/5-steps-to-publish-on-a-facebook-wall-using-php/
http://www.moskjis.com/other-platforms/publish-facebook-page-wall-from-your-site
http://tips4php.net/2010/12/automatic-post-to-facebook-from-php-script/
答案 0 :(得分:2)
$facebook->api('/123456789/feed', 'post', array(
'access_token' => $token,
'link' => 'http://www.example.com'
));
请注意'post'
部分。
如果您通过您提供的链接查看API的来源,您会看到:
protected function _graph($path, $method='GET', $params=array()) {
if (is_array($method) && empty($params)) {
$params = $method;
$method = 'GET';
}
当你没有'post'
作为第二个参数而你的数组没有作为第三个参数时,它会变成get
答案 1 :(得分:1)