Facebook 粉丝页面上的评论:“在我的 Facebook 个人资料上发表评论”不起作用
我想在我的评论中添加一个评论框 Facebook 粉丝页面。
所以我在我的 StaticFBML 页面上添加了:
<fb:comments xid="159887744022306">
<fb:title>Leave a comment</fb:title>
</fb:comments>
其中“159887744022306”是我的页面 ID。现在它实际上在页面上发布评论,但是:
- “向我的 Facebook 个人资料发布评论”功能不起作用。为什么?
- 我如何控制他们分享的内容(例如在他们的帖子中添加图片)?
谢谢
I'd like to add a comment box on my
facebook fan page.
So I added on my StaticFBML page:
<fb:comments xid="159887744022306">
<fb:title>Leave a comment</fb:title>
</fb:comments>
Where "159887744022306" is my page ID. Now it actually posts comments on the page but:
- The feature "Post comment to my Facebook profile" doesn't work. Why?
- How can I control what they share (e.g. adding a picture inside their post) ?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
莱昂纳多,
请在这里注册并为这个错误投票 -> http://bugs.developers.facebook.net/show_bug.cgi?id=13535
这个问题我已经有一段时间了。我有两个相同的应用程序,相同的代码和相同的设置,只是不同的键和网址。在一个(旧应用程序)上“向我的 Facebook 个人资料发表评论”不起作用,在另一个(新应用程序)上一切都很完美。
这没有道理。为这个错误投票的开发者越多,修复它的速度就越快。我希望...
Leonardo,
Please sign up and vote for this bug here -> http://bugs.developers.facebook.net/show_bug.cgi?id=13535
I've had this issue for a while. I have two identical apps, same code and same settings, just different keys and urls. On one (old app) "Post comment to my Facebook profile" doesn't work, on the other (new app) everything is perfect.
It doesn't make sense. The more developers vote for this bug, the faster it will be fixed. I hope...
参考此处找到的 Graph API,
您应该使用 Feed API
https:// graph.facebook.com/me/feed?access_token=
(对于您的 Feed)或https://graph.facebook.com//feed?access_token=
Feed api 接受以下变量(发现 此处)
消息、图片、链接、名称、标题、描述、源
,其中的内容将通过
HTTP POST
传递另外,请注意,如果您不这样做如果不将任何参数传递给 Feed API 调用,那么它不会将 Feed 设置为任何内容,而是为您或其他用户最近的帖子返回 JSON。
这些 api 调用可以通过 JavaScript SDK 或 PHP SDK 进行。如果您不确定如何设置 Graph API 以在您的网站上工作,那么我建议您在尝试实现之前先阅读有关 Graph API 的所有内容,因为一开始可能会有点令人生畏。
In reference to the Graph API found here
You should use the Feed API
https://graph.facebook.com/me/feed?access_token=<auth_token>
(for your feed) orhttps://graph.facebook.com/<USER ID>/feed?access_token=<auth_token>
The feed api accepts the following variables (found here)
message, picture, link, name, caption, description, source
of which are to be passed via
HTTP POST
Also, note that if you don't pass any parameters to the Feed API call, then it will not set the feed to anything but instead return JSON for yours or another users recent posts.
These api calls can be made via the JavaScript SDK or a PHP SDK. If you are not sure how to set up Graph API to work on your site then I recommend reading, all about the Graph API before trying to implement it as it can be a bit intimidating at first.