I need to get the access token from FB.login method in javascript SDK. my login code is
FB.login(function(response) {
if (response.session) {
if (response.perms) {
} else {
// user is logged in, but did not grant any permissions
alert("No Permission..");
}
} else {
// user is not logged in
alert("Please login to facebook");
}
}, {perms:'read_stream,publish_stream,offline_access'});
is there any way to get access token??I am able to get the access token using PHP.
Thanks in advance....