我正在尝试使用 Google API Javascript 客户端在我的应用程序上使用 Google 登录,然后访问用户的电子邮件地址和联系人。我将它与 AngularJS 结合起来,并且我已经读到最好将它作为自己的服务。
到目前为止,这是该服务的代码:
.service('googleLogin', ['$http', '$rootScope', function ($http, $rootScope) {
var clientId = '{MY CLIENT KEY}',
apiKey = '{MY API KEY}',
scopes = 'https://www.googleapis.com/auth/userinfo.email https://www.google.com/m8/feeds',
domain = '{MY COMPANY DOMAIN}';
this.handleClientLoad = function () {
// Step 2: Reference the API key
gapi.client.setApiKey(apiKey);
gapi.auth.init(function () { });
window.setTimeout(checkAuth, 1);
};
this.checkAuth = function() {
gapi.auth.authorize({ client_id: clientId, scope: scopes, immediate: true, hd: domain }, this.handleAuthResult );
};
this.handleAuthResult = function(authResult) {
if (authResult && !authResult.error) {
gapi.client.load('oauth2', 'v2', function () {
var request = gapi.client.oauth2.userinfo.get();
request.execute(function (resp) {
console.log(userEmail);
});
});
}
};
this.handleAuthClick = function (event) {
// Step 3: get authorization to use private data
gapi.auth.authorize({ client_id: clientId, scope: scopes, immediate: false, hd: domain }, this.handleAuthResult );
return false;
};
}]);
然后我从控制器调用它:
$scope.login = function () {
googleLogin.handleAuthClick();
};
哪个有效,并且API被正确调用。但是现在,我不确定如何通过服务从 API 获取数据。我需要获取用户的电子邮件地址,以及他们的联系人列表。我不能只拥有get
返回这些值的单独函数,因为似乎 API 客户端调用必须在链中进行(例如,handleAuthResult
在 中作为参数调用handleAuthClick
)。
我也尝试将它们设置为$rootScope
值,或者只是普通变量,但是一旦控制器调用它们,它们总是以undefined
.
我正确地接近这个吗?如何从 Google API 到 Service 再到 Controller 获取这些变量?谢谢。