I'm using the javascript sdk to implement facebook login. Is it possible to redirect the user to the full login page instead of displaying the popup? I tried adding display : 'page' but that doesn't seem to do anything.
FB.init({
appId: '123456789',
cookie: true,
status: true,
xfbml: true,
frictionlessRequests: true,
oauth: true
});
function login() { //this function called on click of login button
FB.login(function (response) {
//my code
}, { scope: 'email,publish_stream,read_stream,offline_access' });
});
Thanks