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.

I would like to be able to publish OG Actions to Facebook groups. I am able to publish the action as follows:

POST https://graph.facebook.com/me/appfoundry:annotate 
{article: http://synchro.herokuapp.com/articles/10}

This works great, and the annotation shows up in my news feed. But when I try to publish to one of my groups,

https://graph.facebook.com/305900672779368/appfoundry:annotate
{article: http://synchro.herokuapp.com/articles/10}

I get the following error:

{
  "error": {
    "message": "(#240) Requires a valid user is specified (either via the session or via the API parameter for specifying the user.", 
    "type": "OAuthException", 
    "code": 240
  }
}

I would like these actions to be visible only in the groups, which might be private or secret, and I do NOT want them to show up in a user's news feed or ticker.

I am using the Graph API Explorer with my app selected, which has user_groups, publish_stream, publish_actions, share_item and status_update permissions.

What am I missing?

Thanks,

Marty

share|improve this question

1 Answer

This is not possible, only Users can publish Open Graph actions.

A user can choose who can see their actions, but can't currently only allow just members of a group to see those actions.

share|improve this answer
Simon, thanks for answering! – martypicco Feb 22 '12 at 19:59

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.