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.

On this page:

http://developers.facebook.com/docs/opengraph/using-app-tokens/

It describes how to get the app access token, yet the token it returns is different than the one in the open Graph "Get Code" example. The latter is the only one that works. How can I get the second access token using the API? When I try to use the first example, I basically get something back that looks like "application ID|secret key" which is different than the real access token.

share|improve this question
What's your problem? that the app access token you receive from the access_token endpoint doesn't work? – Igy May 8 '12 at 17:33
No it doesn't work. The one from the "get code" section works, but it changes over time. – Jafo May 8 '12 at 19:58
There should be no expiry on an app access token retrieved using the instructions on developers.facebook.com/docs/authentication/applications – Igy May 8 '12 at 20:59

1 Answer

up vote 0 down vote accepted

as documentation states, you will get

access_token=YOUR_APP_ACCESS_TOKEN

string back from the API call. Even though it LOOKS like "application ID|secret key HASH" - it is a valid access token you can use to publish to user's wall. You can verify it's a proper access token using Debug toll from FB: https://developers.facebook.com/tools/debug - just paste the token there.

The reason it might not work for you is because you are trying to publish something to the user's wall who did not authorize your app. Look here: https://developers.facebook.com/docs/reference/javascript/ - for example of how to use your app ID to make user authorize the app. You need to request publish_stream permission for your app from user in order to be able to publish as the app to the user's wall.

And going back to the documentation:

Note that the app access token is for publishing purposes permitted by the publish_actions and publish_stream permissions. You will be unable to retrieve information about the status update post with the given ID using the app access token. Instead, you should use a user access token for such purposes.

hope that helps.

share|improve this answer
I have set it up for publish_stream and here is the error I get: "An active access token must be used to query information about the current user." Here is the code: ` $data['access_token'] = '[MY APP KEY IS HERE]'; return $this->post_data_to('graph.facebook.com/me/'; . $namespace . ':' . $action, $data, true); ` – Jafo May 9 '12 at 13:04
please read your link - developers.facebook.com/docs/opengraph/using-app-tokens - more careful. It says there: You should be able to use an app access token to make API calls, in the form of POST requests, to publish information on behalf of the user, just as you would with a user access token. Note that because you are not using a user access token, all calls to publish information on behalf of the user should reference /[USER FB ID] instead of /me. – avs099 May 9 '12 at 13:30
that means: 1. You cannot use app token to get information about the user; 2. You should NOT use "/me/" but need to use "/USER_ID/" instead. – avs099 May 9 '12 at 13:31
Gotcha.. Sorry, but there is quite a bit of documentation to go through here and it spans multiple programming languages and various methods. It is easy to get lost. I think this resolves the issue though and thanks for your time! :) – Jafo May 9 '12 at 13:32

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.