The new Facebook PHP-SDK have a getApplicationAccessToken method, which is the join between your [appID]|[appSecret]. I usually use a request from graph with this url https://graph.facebook.com/oauth/access_token and turn out have a different value from the first. Both access token can access the app detail by using this request https://graph.facebook.com/[appID]
So which one should be use???, its confuse me, I would rather to use the first one, bcoz it doesnt have to make a graph request but can I do that or should I???
app_id|app_secret. Since internally the PHP SDK creates the app access token the same way, I think its safe to say that this will always work. – CBroe Sep 19 '12 at 10:36