digitalpoint
Well-known member
XF 1.3.2 changed to use Facebook's 2.0 API, which requires a review for some of the permissions granted automatically under 1.0. Since the code still exists that will utilize the data from the extra permissions if Facebook passes it back, it would be really nice to have a setting under XF that basically allows you to tell XF what extra permissions you already have granted for your application (if any).
For example, this:
Could just become something like:
For example, this:
PHP:
$perms = 'public_profile,email';
Could just become something like:
PHP:
$perms = 'public_profile,email' . (XenForo_Application::get('options')->facebookExtendedPermissions ? ',' . XenForo_Application::get('options')->facebookExtendedPermissions : '');
Upvote
0