ParseFacebookUtils Android auth_type:’reauthenticate’

前端之家收集整理的这篇文章主要介绍了ParseFacebookUtils Android auth_type:’reauthenticate’前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在使用Facebook SDK 3.19.1,Parse 1.8.0,
在通过Facebook登录期间,我的应用程序仅要求基本权限 – 公开个人资料和电子邮件.
使用ParseFacebookUtils.logIn方法时,如何重新询问被拒绝的权限?

我没有找到任何可以指定auth_type的参数.

解决方法

你不需要显式调用auth_type:’reauthenticate’.你应该只记得logInWithReadPermissions,这将完成这项工作.

所以请确保你打电话:

Collection<String> permissions = Arrays.asList("public_profile","user_friends");   
 loginManager.logInWithReadPermissions(this,permissions);

只有在新的logInWithReadPermissions之前没有调用logout时,这才有效.

这个question可以帮助您了解更多细节.

原文链接:https://www.f2er.com/android/318054.html

猜你在找的Android相关文章