Ressources dev:Facebook
[modifier] Ajouter une application dans une page fan
https://www.facebook.com/dialog/pagetab?app_id=APP_ID&display=popup&next=URL_HTTPS_DU_CANEVAS
[modifier] Créer un Test User (maximum 500 test users par application)
D'abord obtenir l'app access token :
https://graph.facebook.com/oauth/access_token? client_id=YOUR_APP_ID& client_secret=YOUR_APP_SECRET& grant_type=client_credentials
http://developers.facebook.com/docs/authentication/applications/
Ensuite créer le test user :
https://graph.facebook.com/APP_ID/accounts/test-users? installed=true& name=FULL_NAME& locale=en_US& permissions=read_stream& method=post& access_token=APP_ACCESS_TOKEN
http://developers.facebook.com/docs/test_users/
[modifier] Obtenir l’access_token de l’application
$APPLICATION_ID = "APP_ID";
$APPLICATION_SECRET = "APP_SECRET";
$token_url = "https://graph.facebook.com/oauth/access_token?" . "client_id=" . $APPLICATION_ID . "&client_secret=" . $APPLICATION_SECRET . "&grant_type=client_credentials";
$app_token = file_get_contents($token_url);
Some of the features in Facebook Graph API requires a special kind of tokens called “app access token“. Features like Facebook Test Accounts and Facebook Insights make use of this token.