User_friends
is a default permission. I have tried to remove for the application but the only thing that I realize is that I remove just for one user for me using:
User_friends是默认权限。我试图删除该应用程序,但我唯一意识到我只为一个用户删除使用:
delete user-id/permissions/user_friends.
I would like that my app to never ask this permission for all the users. So please tell me how to proceed:
我希望我的应用程序永远不会向所有用户请求此权限。所以请告诉我如何继续:
- what to use at Access Token
- what is the query
在Access Token中使用什么
什么是查询
1 个解决方案
#1
In API V2.0 and higher there are no default permissions other than basic_info
.
在API V2.0及更高版本中,除basic_info之外没有默认权限。
Although user_friends
is approved by default, unless you're including it in your app's login code, user_friends
won't be part of the permissions new users are prompted to accept
虽然默认情况下user_friends已获批准,但除非您将其包含在应用程序的登录代码中,否则user_friends将不会成为新用户被提示接受的权限的一部分
#1
In API V2.0 and higher there are no default permissions other than basic_info
.
在API V2.0及更高版本中,除basic_info之外没有默认权限。
Although user_friends
is approved by default, unless you're including it in your app's login code, user_friends
won't be part of the permissions new users are prompted to accept
虽然默认情况下user_friends已获批准,但除非您将其包含在应用程序的登录代码中,否则user_friends将不会成为新用户被提示接受的权限的一部分