I have a problem to define the required permission an user should allow to my application.
Actually, just the offline_access doesn’t work.
I put it in the app description (Authenticated Referrals) and when the user asks for authorization
$dialog_url = “https://www.facebook.com/dialog/oauth?
client_id=”.$app_id
.”&redirect_uri=”.urlencode($my_url)
.”&scope=offline_access” >
.”&state=”.$_SESSION[‘state’];
I can’t understand why, when the oauth dialog appears, no offline permission is asked! i’ve already tried to remove and reinstall the application.
Any suggestion? thank you
it has been deprecated, see this page for an explanation on what to do now: https://developers.facebook.com/docs/offline-access-deprecation/