I am developing a web App using Facebook JavaScript SDK to be displayed within Facebook Canvas. My app asks the permission to User to display it's default basic info. But when user tries to use the app for the first time, it is asking the EMAIL along with the basic info. As part of the Auth, my App should not ask EMAIL permission to any user. I use the below code snippet :
window.fbAsyncInit = function()
{
FB.init({
appId: 'xxxxxxxxxxx', //App Id
//channelUrl:"", //Channel File
status: true, //Check login status
cookie: true, //Enable cookies to allow the server to access the session
xfbml: true, //Parse XFBML
oauth: false}); //Enable OAuth
//Show loader
showLoader(true);
//
//update the button
//
function updateButton(response)
{
buttonFBLogin = document.getElementById('fb-auth');
userInfo = document.getElementById('user-info');
if (response && response.status == 'connected') //response.authResponse &&
{
// The user is connected to Facebook
// and has authorized the app.
// Now personalize the user experience
FB.api('/me', function(info)
{
login(response, info);
});
buttonFBLogin.onclick = function()
{
FB.logout(function(response) {
logout(response);
});
};
}
else
{
//User is not connected to your app or logged out
buttonFBLogin.innerHTML = 'Login with Facebook';
buttonFBLogin.onclick = function()
{
showLoader(true);
FB.login(function(response)
{
if (response.authResponse)
{
FB.api('/me', function(info)
{
login(response, info);
});
}
else
{
//
//user cancelled login or did not grant authorization
//
showLoader(false);
}
//
// Define the permissions you want from a user.
//
}, {scope:'user_about_me'});//{scope:'email,status_update,publish_stream,user_about_me'});
}
}
}
// run once with current status and whenever the status changes
FB.getLoginStatus(updateButton);
FB.Event.subscribe('auth.statusChange', updateButton);
};
How can I stop this EMAIL permission in the App's Auth dialog?
Thanks, DK