0.1.4 • Published 9 years ago

yql-auth v0.1.4

Weekly downloads
4
License
MIT
Repository
github
Last release
9 years ago

YQL-Auth

NPM

A YQL helper with OAuth support for Node.js

Installation

npm install yql-auth --save

Usage

Public YQL API (No Authentication Provided)

var yql = require('yql-auth');

yql.query('select * from geo.concordance where namespace="iata" and text="sfo"').then(function (response) {
	console.dir(response);
}).catch(function (error) {
	console.error(error);
});

Logged In Using Your APP ID and Secret

var yql = require('yql-auth').options({
	OAuth: {
		ID: '[CLIENT_ID]',
		Secret: '[CLIENT_SECRET]'
	}
});

yql.query('SELECT * FROM pm.finance.articles WHERE symbol="EURUSD"').then(function (response) {
	console.dir(response);
}).catch(function (error) {
	console.error(error);
});

Additional Options

// Besides OAuth {ID: ID, Secret: Secret}, you can define the format of the response.
// It supports JSON and XML (in lowercase)
.options({
  format: 'xml'
})

Licence

MIT

Release History

  • 0.1.4 Bug fixes
  • 0.1.0 Initial release
0.1.4

9 years ago

0.1.3

9 years ago

0.1.2

9 years ago

0.1.1

9 years ago

0.1.0

9 years ago