0.0.1 • Published 10 years ago

bitly-api v0.0.1

Weekly downloads
3
License
MIT
Repository
github
Last release
10 years ago

bitly-node-api

Node npm for bitly API

Currently this only has Link History and Network History. The rest of the API will be wired up in the future

Getting Started

Install the module with: npm install bitly-api

Get Access Token

var bitly = require('bitly-api');

bitly.getAcessToken( client_id, client_secret, app_redirect_url, code, function( data) {
	console.log( data )
	//returns access_token
})

Please note, app_redirect_url should be the URL that is used in you bit.ly application.

Get Link History

bitly.getLinkHistory( access_token, options, function( data ) {
	console.log( data )	
})

'options' is an optional parameter and needs to be an object using the parameters of the bit.ly url for Link History

options = {
	limit: 10,
	offset: 5,
	...
}

Get Network History

bitly.getNetworkHistory( access_token, options, function( data ) {
	console.log( data )	
})

'options' is an optional parameter and needs to be an object using the parameters of the bit.ly url for Network History

options = {
	limit: 10,
	offset: 5,
	...
}

License

Copyright (c) 2014 Tobias Wright. Licensed under the MIT license.