Facebook Graph API - Post on Group wall as Group -
i trying post facebook group wall via graph api. when make post, owner of post set personal id. know how make group has owner of post. below current code:
form_fields = { "message": 'this message title', "link": 'http://facebook.com', "name": 'this message title', "access_token": 'token here' } form_fields['description'] = 'this message body' form_data = urllib.urlencode(form_fields) response = urlfetch.fetch( url="https://graph.facebook.com/%s/feed" % group_id, payload=form_data, method=urlfetch.post, deadline=10 )
you can't it. that's 1 of differences between group , pages, in page when post admin user of post page , not userid, there no way can make group owner of post using graph api. see link http://www.facebook.com/help/?page=904 , search question "how pages different groups?".
Comments
Post a Comment