我正在创建用户登录我的网络应用程序,我有对话窗口的问题。我正在使用JavaScript API。在正常的应用程序登录中只显示一个包含所有权限的对话框窗口,但我的应用程序显示3个窗口。每个许可一个。
有没有办法把它放到一个窗口? 或者你能告诉我我做错了吗?
FB.init({
appId : facebook_key,
status : true, // check login status
cookie : true, // enable cookies to allow the server to access the session
xfbml : true // parse XFBML
});
FB.login(function(response) {
}, (scope: 'publish_stream,status_update,manage_pages'});