将 Feed 发布到 Facebook 会导致 PHP 陷入困境
我正在使用 php SDK 来实现 Graph API,一切工作正常,获取用户名、上传照片等。 但是,当我尝试发布到当前用户的提要时,它只会使页面卡住。
这是代码:
$publish_feed = $facebook->api('/'.$userid'/feed', 'post', array(
'message'=> 'message',
'picture'=> 'http://mysubdomain.mywebsite.com/photo.jpg',
'link'=> 'http://apps.facebook.com/appname/'
););
我已经尝试过:
- 将代码放在代码中的不同位置 - 无论我在哪里做,它都会使页面卡住,即使 ti 位于代码末尾,它也会卡住,什么也没有显示。
- 将
$userid
更改为/me
。没有成功。
请帮忙。
I'm using the php SDK for the Graph API, and everything is working fine-getting usernames, uploading photos etc.
However, when I'm trying to publish to the current user's feed, it just makes the page get stuck.
This is the code:
$publish_feed = $facebook->api('/'.$userid'/feed', 'post', array(
'message'=> 'message',
'picture'=> 'http://mysubdomain.mywebsite.com/photo.jpg',
'link'=> 'http://apps.facebook.com/appname/'
););
I've tried:
- Putting the code in different places in the code-no matter where I do, it gets the page stuck, Even if ti is at the end of the code, it gets it stuck, and nothing shows.
- changing
$userid
to/me
. No success.
Please help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
publish_stream
权限,/me
或api("/$userid/feed",..etc
代码:
publish_stream
permission/me
orapi("/$userid/feed",..etc
Code: