Faceboook oauth redirects to callback without asking for permissions in php

32 views Asked by At

I am trying to get a list of Facebook pages a user has. When a new user logs into his/her account it asks for pages and permissions later if i update the permissions. Oauth API does'nt ask for permissions but directly redirects to callback as auth url is clicked.

These are permissions i am looking for

$perms = ['public_profile','publish_pages','read_insights','manage_pages'];

$connect_url = $helper->getLoginUrl('https://example.com/callback.php', $perms);

I am expecting api should ask user for permissions and pages to access for app

0

There are 0 answers