Facebook 群组文档 API

发布于 2024-12-12 07:13:50 字数 259 浏览 0 评论 0原文

我是否可以使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

青柠芒果 2024-12-19 07:13:50

我发现 Facebook API 文档中唯一提到群组文档的页面是:
https://developers.facebook.com/docs/reference/api/group/

您可以通过组的 docs 连接检索该组的文档。

使用这种形式的 URL:

https://graph.facebook.com/group_id/docs?access_token=...

有了文档的 ID,您可以直接请求它:

https://graph.facebook.com/doc_id?access_token=...

使用 JavaScript SDK

FB.api('/doc_id', function(doc) {
  alert(document.body.innerHTML = doc.message);
});

发布文档

(需要publish_stream和manage_groups权限)

var doc = {
  subject: 'Test',
  message: 'This is a test doc.'
};
FB.api(group_id + '/docs', 'post', doc, function(response) {
  if (!response || response.error) {
    alert('Error occured');
  } else {
    alert('Doc ID: ' + response.id);
  }
});

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:

https://graph.facebook.com/group_id/docs?access_token=...

With the ID of a doc, you can request it directly:

https://graph.facebook.com/doc_id?access_token=...

Using the JavaScript SDK:

FB.api('/doc_id', function(doc) {
  alert(document.body.innerHTML = doc.message);
});

Posting a doc

(requires permissions publish_stream and manage_groups)

var doc = {
  subject: 'Test',
  message: 'This is a test doc.'
};
FB.api(group_id + '/docs', 'post', doc, function(response) {
  if (!response || response.error) {
    alert('Error occured');
  } else {
    alert('Doc ID: ' + response.id);
  }
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文