Facebook 添加 POST 到页面
我已成功使用 /me/feed/ 自动将帖子添加到我的个人资料中,但如何将帖子添加到在我的帐户中创建的页面?
他们说“/[page id]/feed/”我怎样才能找到正确的页面ID?我需要使用其他方法来发布到我的 Facebook 页面吗?
我搜索了如何获取页面ID,我已经获取并使用了此ID:123397591098452,页面:http://www.facebook.com/pages/Siteique/123397591098452但该帖子不起作用。
注意:应用程序拥有所有正确的权限。
这就是我发送帖子的方式:
$facebook->api('/me/feed/','POST',$post);
I've managed to automattically add a post to my profile using /me/feed/ , but how can I add a post to a page created within my account ?
they say " /[page id]/feed/ " how can I find the right page ID ? Do I need to use another method to post to my facebook page ?
I've searched on how to get the page ID, I've obtained and used this ID: 123397591098452 for page: http://www.facebook.com/pages/Siteique/123397591098452 but the post is not working.
Note: the application has all the right privileges.
This is the way i`m sending the post:
$facebook->api('/me/feed/','POST',$post);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试在页面所属的帐户下登录您的应用程序,然后将代码转换为 oauth 令牌,然后在您的请求中使用该 oauth 令牌。祝你好运
Try logging into your app under the account the the page belongs to, then turn the code into an oauth token, and then use that oauth token with your request. Good Luck