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 used the graph api in order to connect the user and publish an event on its wall.

But if I am connected as a page, I get this error message : "You need to be connected as a user and not as a page to run this app"

But I which I could publish my event on a fan page.

Here is my TOKEN_URL

How shoud I do to be able to publish on my fan page. How can I enable that ?

share|improve this question
possible duplicate of How to programmatically add an event to a page using Graph API? – ifaour Nov 21 '11 at 16:45

3 Answers

up vote 7 down vote accepted
+50

To publish "on behalf" of a Page, you need to use a Page access token. To get a Page access token, first get an access token for a user with the manage_pages and publish_stream permissions:

https://graph.facebook.com/oauth/authorize?client_id=YOUR_APP_ID&
redirect_uri=YOUR_REDIRECT&scope=manage_pages,publish_stream&type=user_agent

Then, using the access token you get as a result, do a GET of:

https://graph.facebook.com/me/accounts?access_token=ACCESS_TOKEN_FROM_STEP_1

Here, you'll find the list of the Pages the user is an admin of. Here you can grab the access token for one of these Pages. Now calls you make will be made on behalf of the Page. Now anything you try to post will be posted as the Page. If you are trying to create events, you may also need the create_event permission.

To see how this works, you can test this out using these URLs in your browser or in the Graph API Explorer.

share|improve this answer
Looks good, Thanks. – Natim Aug 3 '11 at 8:29
No problem Natim. – Jeff Bowen Aug 4 '11 at 2:50

You need to get an offline access token with the manage_pages permission for the user that created/owns the fan page. After obtaining the user's access token, then you need to get the page's access token. See this answer with code for details: How can I use 'manage_pages' permission with the sdk on facebook?

share|improve this answer

You could log in as the administrator of the page and create an offline access token for that user.

share|improve this answer
It still doesn't work event with the offline access token. – Natim Jul 13 '11 at 6: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.