Just searched several hours on how a page could authorize my application.
https://www.facebook.com/connect/prompt_permissions.php?api_key=<your-api-key>&fbconnect=true&v=1.0&display=popup&extern=1&next=http://apps.facebook.com/<your-app>&ext_perm=publish_stream&enable_profile_selector=1
Reacties
Bramus! schreef:
06/05/10
Or, via the new Graph API, you can make a call to https://graph.facebook.com/oauth/authorize?client_id=<your-app-id>&redirect_uri=http://www.example.com/callback&scope=user_photos,user_videos,stream_publish
The scope parameter is a comma separated list of any of the values as seen at http://developers.facebook.com/docs/authentication/permissions
Nonetheless: the Facebook API docs could use a bit of cleaning and a few more pratical/fully worked out cases/examples ;)
Tijs Verkoyen schreef:
13/05/10
@Bramus: If I remember correctly, your method doesn't have the page-selector, so you can't select the page which should grant your app.
JahManCan schreef:
02/06/10
@Bramus: there is an error in your url...there is no such parameter as stream_publish, it should be publish_stream ;)