Google官方支持的NodeJS訪問API,提供后臺登錄授權(quán)
安裝
此庫通過npm發(fā)布。通過以下命令安裝googleapis及其依賴
$ npm install googleapis
完整的API支持列表 https://developers.google.com/apis-explorer
使用
例1: 通過Google短地址獲取完整地址
var google = require('googleapis');
var urlshortener = google.urlshortener('v1');
var params = { shortUrl: 'http://goo.gl/xKbRu3' };
// get the long url of a shortened url
urlshortener.url.get(params, function (err, response) {
console.log('Long url is', response.longUrl);
});
例2: 登錄授權(quán)
此示例集成OAuth2認證,可以讓你獲取到用戶的訪問Token并刷新此Token防止會話過期。
var google = require('googleapis');
var plus = google.plus('v1');
var oauth2Client = new OAuth2(CLIENT_ID, CLIENT_SECRET, REDIRECT_URL);
// Retrieve tokens via token exchange explained above or set them:
oauth2Client.setCredentials({
access_token: 'ACCESS TOKEN HERE',
refresh_token: 'REFRESH TOKEN HERE'
});
plus.people.get({ userId: 'me', auth: oauth2Client }, function(err, response) {
// handle err and response
});
完整的登錄授權(quán)示例。 https://github.com/google/google-api-nodejs-client/blob/master/examples/oauth2.js
例3: 文件上傳
var fs = require('fs');
var drive = google.drive({ version: 'v2', auth: oauth2Client });
drive.files.insert({
resource: {
title: 'testimage.png',
mimeType: 'image/png'
},
media: {
mimeType: 'image/png',
body: fs.createReadStream('awesome.png') // read streams are awesome!
}
}, callback);
問題解答?
如有任何問題可到 Stackoverflow 提問
如果發(fā)現(xiàn)漏洞可到GitHub上提交 Issue
相關(guān)文章
輕松創(chuàng)建nodejs服務器(9):實現(xiàn)非阻塞操作
這篇文章主要介紹了輕松創(chuàng)建nodejs服務器(9):實現(xiàn)非阻塞操作,本系列文章會教你一步一步創(chuàng)建一個完整的服務器,要的朋友可以參考下2014-12-12
Nodejs如何使用http標準庫異步加載https請求json數(shù)據(jù)
這篇文章主要介紹了Nodejs如何使用http標準庫異步加載https請求json數(shù)據(jù),具有很好的參考價值,希望對大家有所幫助。如有錯誤或未考慮完全的地方,望不吝賜教2022-09-09

