>웹 프론트엔드 >JS 튜토리얼 >Google에서 공식적으로 지원하는 NodeJS 액세스 API로 백그라운드 로그인을 제공합니다.authorization_node.js

Google에서 공식적으로 지원하는 NodeJS 액세스 API로 백그라운드 로그인을 제공합니다.authorization_node.js

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB원래의
2016-05-16 16:40:481705검색

설치

이 라이브러리는 npm을 통해 공개됩니다. 다음 명령을 통해 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: 로그인 인증

이 예에서는 OAuth2 인증을 통합합니다. 이를 통해 사용자의 액세스 토큰을 얻고 이 토큰을 새로 고쳐 세션 만료를 방지할 수 있습니다.

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

완전한 로그인 인증 예시. 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);

Q&A요?

질문이 있으시면 Stackoverflow로 이동하여

에 문의하세요.

취약점을 발견하면 GitHub에 제출할 수 있습니다. 문제

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.