Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

share|improve this question

1 Answer

up vote 0 down vote accepted

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);
  }
});
share|improve this answer
What about to post docs? – Oxinabox Aug 16 '12 at 5:56
I've added some JS showing how to post a doc. – CEL Feb 6 at 17:06

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.