Google OAuth2 コードはhttps://developers.google.com/api-client-library/javascript/features/authenticationに基づいてい ます
LoginView
にはいくつかの関数があり、各関数は別の関数を呼び出します。
checkAuth
機能するまでに、 はsetTimeout内でによって呼び出されたため、 undefinedthis.handleAuthResult
を返します。checkAuth
handleClientLoad
this
コンテキストの問題にどう対処するか? また、変数をグローバルにする代わりにscope
、clientId
変数に対して同じことを行うことはできますか?apiKey
define(['underscore','jquery','backbone','text!templates/login.html','async!https://apis.google.com/js/client.js!onload'], function(_, $, Backbone, loginTpl) {
var LoginView = Backbone.View.extend({
template: _.template(loginTpl),
initialize: function() {
clientId = '';
apiKey = '';
scopes = 'https://www.googleapis.com/auth/plus.me';
this.handleClientLoad();
},
render: function() {
this.$el.html(this.template());
return this;
},
handleClientLoad: function() {
gapi.client.setApiKey(apiKey);
window.setTimeout(this.checkAuth, 1);
},
checkAuth: function() {
gapi.auth.authorize({ client_id: clientId, scope: scopes, immediate: true }, this.handleAuthResult);
},
handleAuthResult: function(authResult) {
var authorizeButton = this.$el.find('#authorize-button');
if (authResult && !authResult.error) {
console.log('Authorized!');
this.makeApiCall();
} else {
authorizeButton.onclick = this.handleAuthClick;
}
},
handleAuthClick: function(event) {
gapi.auth.authorize({client_id: clientId, scope: scopes, immediate: false}, this.handleAuthResult);
return false;
},
makeApiCall: function() {
gapi.client.load('plus', 'v1', function() {
var request = gapi.client.plus.people.get({
'userId': 'me'
});
request.execute(function(resp) {
var authorizeButton = this.$el.find('#authorize-button');
localStorage.isAuthenticated = true;
Backbone.history.navigate('', true);
});
});
}
});
return LoginView;
});