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

Popular posts from this blog

unicode - Are email addresses allowed to contain non-alphanumeric characters? -

c++ - Convert big endian to little endian when reading from a binary file -

C#: Application without a window or taskbar item (background app) that can still use Console.WriteLine() -