Google API を必要とし、OAuth2 を認証メカニズムとして使用する小さな node.js Web アプリケーションを作成しています。アクセス トークンを要求する際に奇妙なことに気付きました。アクセスを許可した後に受け取る「コード」は、型をオブジェクトから文字列に変更します。応答タイプは、「建物内の OAuth」の後に記録されます。
これが重複した質問である場合は申し訳ありません。
ルート:
handle['/connect'] = requestHandlers.connect;
handle['/oauth2callback'] = requestHandlers.oauth;
ルーター:
console.log("About to route a request for " + pathname);
if (typeof handle[pathname] === 'function'){
handle[pathname](response);
if (pathname === '/oauth2callback'){
handle[pathname](query);
}
} else {
console.log("No request handler found for " + pathname);
response.writeHead(404, {"Content-Type": "text/plain"});
response.write("404 Not found");
response.end();
}
ハンドラ:
function connect(response){
console.log("Request Handler 'start' was called.");
auth.access(response);
}
function oauth(response){
console.log("OAuth in the building. This is the instance: ");
if(typeof response !== 'undefined'){
if(typeof response == "string"){
var code = response.split("code=").pop();
auth.exchange(code);
}else {
console.log("This response isn't ready until it is a string. It has these values: " + Object.getPrototypeOf(response));
}
}
}
認証:
function getAccess(response){
var url = authClient.generateAuthUrl({
access_type: 'offline',
scope: 'https://www.googleapis.com/auth/userinfo.email https://www.googleapis.com/auth/userinfo.profile https://www.googleapis.com/auth/calendar https://www.googleapis.com/auth/calendar.readonly'
});
console.log("[Auth.js] This is the response received: " + Object.keys(response));
response.writeHead(302,{
"Location":url
});
response.end();
}
function exchangeToken(code){
authClient.getToken(code,function(err,tokens){
console.log("We got some tokens! " + tokens);
});
console.log("Authorized");
}