Facebook 群组文档 API
我是否可以使用 facebook group api 发布和检索群组文档?我已经浏览了文档,但找不到任何解释如何实现这一点的内容,如果有人知道我可以在哪里获得此内容,请提供链接网址,以便我可以自己阅读。简而言之,我想检索文档并能够通过 facebook api(javascript 或 PHP)将文档发布到 facebook 群组。基本上,我只是在寻找一个地方,在那里我可以自己去阅读如何做到这一点,而不是用代码来完成,但如果有任何代码在那里工作,那么请毫不犹豫地发布它。
谢谢 唐纳德
Is it possible that i can post and retrieve a group's documents with the facebook group api? i have went through the documentation and couldn't find anything that explain how this can be achieved, if anyone know where i can get this please give the link url so that i can go and read it myself. In short i want to retrieve and be able to post documents to a facebook group through a facebook api, either javascript or PHP. basically i'm just looking for a place where i can go and read for myself how this can be done not to be fed with code but if there is any code working out there then don't hesitate to post it.
Thanks
Donald
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我发现 Facebook API 文档中唯一提到群组文档的页面是:
https://developers.facebook.com/docs/reference/api/group/
您可以通过组的 docs 连接检索该组的文档。
使用这种形式的 URL:
有了文档的 ID,您可以直接请求它:
使用 JavaScript SDK:
发布文档
(需要publish_stream和manage_groups权限)
The only page in the Facebook API docs I found that mentions group documents is this:
https://developers.facebook.com/docs/reference/api/group/
You can retrieve the documents of a group with the docs connection of the group.
Use a URL of this form:
With the ID of a doc, you can request it directly:
Using the JavaScript SDK:
Posting a doc
(requires permissions publish_stream and manage_groups)