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 have to use Facebook's notification for my web app. Facebook Graph API requires the Application Access Token for this action.

Is there a way to get this token by code (C# SDK) or is this generated by Facebook a single time? Is this token static (and secret) or with expire datetime?

For info: https://developers.facebook.com/tools/access_token/ - App Token, not User Token!

Thanks

share|improve this question

3 Answers

You can just use the concatenation of id and secret with a pipe symbol in the middle:

app_id|app_secret

This is actually how the PHP SDK creates the app access token internally, so there should be no question about the reliability of this method. (From other endpoints where you actively query for an app access token you might get another token that does not match this scheme though.)

share|improve this answer
Thanks four your answer, but I think it's not the correct information. The left part (app_id) is the same as Facebook's Access Token Tool shows. But the right part differs from the app_secret. Also it does not work with this combination. Just the combination shown in the Access Token Tool works. – DerAbt Mar 11 at 23:46
The last attempt worked too, but with a 10 minute time delay – DerAbt Mar 11 at 23:58

The answer is the dynamic way by code:

var fb = new FacebookClient();
dynamic result = fb.Get( "oauth/access_token", new
{
  client_id = <myAppID>,
  client_secret = <mySecretID>,
  grant_type = "client_credentials"
} );

var apptoken = result.access_token;

Or by the combination or appid|secretid

share|improve this answer

you can investigate the getApplicationAccessToken method as in another c# sdk project from github

https://github.com/barans/FacebookCsharpSdk/blob/master/FacebookCSharpSDK/FacebookClient/FacebookClient.cs

share|improve this answer

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.