0

目前,我正在开发一个网络应用程序,该应用程序授权用户的 facebook 和 google 帐户从这些站点获取一些数据。我用了:

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.
    }
});

获取 oauth 令牌。

现在,每当用户登录到他的 facebook 或 google 帐户时,我都想要。我在我的 Web 应用程序中收到该用户已登录的通知。

4

1 回答 1

0

您不能制作一个应用程序,每次有人登录 Facebook/Google+ 时都会通知您。但是,只要他们使用您的应用程序或访问使用其各自社交 API 的网站,您就会被告知。这样做相当简单,只要您对应用程序的人进行身份验证/登录,只需发送一封电子邮件。

于 2012-04-25T09:12:34.803 回答