Currently I am working on a web app which has authorizations for user's facebook and google account to get some data from these sites. I used:
FB.getLoginStatus(function(response) {
if (response.status === 'connected') {
user_id = response.authResponse.userID;
accessToken = response.authResponse.accessToken;
}
else if (response.status === 'not_authorized') {
// the user is logged in to Facebook,
// but has not authenticated your app
}
else {
// the user isn't logged in to Facebook.
}
});
to get oauth token.
Now I want whenever a user logs in to his facebook or google acount. I get notification at my web application that this user has been logged in.