I'm using Facebook SDK 3.19.1, Parse 1.8.0, During login via Facebook, my app asks for basic permissions only - public profile & email. When using ParseFacebookUtils.logIn method, how to re-ask declined permissions?
I didn't find any param where I could specify auth_type.
You dont need to explicitly call auth_type: 'reauthenticate'. You should only recall logInWithReadPermissions and this will make the job.
So make sure you are calling:
 Collection<String> permissions = Arrays.asList("public_profile", "user_friends");   
 loginManager.logInWithReadPermissions(this, permissions);
This will only work if you are not calling logout before the new logInWithReadPermissions.
This question may help you with more details.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With