I’ve been reading the documentation which at a point says “This dialog will request all permissions specified in the User & Friend Permissions section of your app’s settings.”
However I cannot find the User & Friend Permissions section to specify my required permissions.
I’m using the Javascript SDK.
Where/how is it done?
thanks
What you need to add is the
scopeparameter, either within your JS SDK (help page mentioned above) or add into your URL call, eg:https://www.facebook.com/dialog/oauth?client_id=YOUR_APP_ID&redirect_uri=YOUR_URL&scope=email,read_stream&response_type=tokenYou may want to start with Facebook’s Authentication page first to understand the oauth flow.