Skip to content

Latest commit

 

History

10 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 
 
 

Repository files navigation

bitly-oauth

A node.js wrapper for bit.ly API with the OAuth-required methods.

Install it:

npm install bitly-oauth

Use it:

var Bitly = require("bitly-oauth");
var b = new Bitly("username", "password");

// Optional step if you want to authenticate manually..
b.authenticate(function(err){
  console.log(b.isAuthenticated);
});

// First parameter is an object containing all query parameters
// Second parameter is a function(err, result) callback
// Calls /v3/link/click
b.link.click({ link: "http://bit.ly/Vnr22W" }, function(err, result){
  // do stuff
});

// Calls /v3/expand
b.expand({ shortUrl: "http://bit.ly/Vnr22W" }, function(err, result){
  // do moar stuff
});

The query parameters are listed in the individual method signatures in the bitly documentation.

About

node.js wrapper for bit.ly API with OAuth methods

Resources

Stars

3 stars

Watchers

1 watching

Forks

Releases

Packages

Used by

Contributors

Languages