Skip to content

simple wrapper of request-json to access oldschool gdata api without oauthtoken refreshing

Notifications You must be signed in to change notification settings

cylwin/simple-gdata

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 

Repository files navigation

simple-gdata

Simple Google Data API client for OAuth 2.0 without things about getting and refreshing a token.

npm install simple-gdata

Usage

var gdata = require('simple-gdata');

client = gdata('your oauth access token');

// for example with the picasa album feed
client.getFeed("https://picasaweb.google.com/data/feed/api/user/default", function(err, body){
  console.err(err);
  console.log(body);
});

About

simple wrapper of request-json to access oldschool gdata api without oauthtoken refreshing

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published