我使用facebook sdk创建了FB登录。如何在登录弹出窗口中实现“查看您提供的信息”而不是“公开个人资料”。 我当前的权限是public_profile,email,user_friends。
来自:
TO:
答案 0 :(得分:1)
在调用FB.login()之前尝试此操作,在没有任何登录范围的情况下调用或给出适当的范围值。使用JavaScript API进行登录,并确保您使用相应的登录版本!
FB.init({
appId: 'xxxxxxxxxxxx',
cookie: true, // enable cookies to allow the server to access // the session
xfbml: true, // parse social plugins on this page
version: 'v2.2' // use version 2.2
});
答案 1 :(得分:0)
我自己找到了答案。问题是sdk的版本。更换后
https://connect.facebook.net/en_UK/all.js
至
https://connect.facebook.net/en_US/sdk.js
它工作正常。