From e38ab951f125da4a48a2ab0107f6d4fd78c506a5 Mon Sep 17 00:00:00 2001 From: Mark Wubben Date: Wed, 28 Jul 2010 19:22:57 +0200 Subject: [PATCH] Fixed `getOAuthAccessToken` (rather than `getOauthAccessToken`). --- lib/oauth.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/oauth.js b/lib/oauth.js index 224f94d..16e5e47 100644 --- a/lib/oauth.js +++ b/lib/oauth.js @@ -233,7 +233,7 @@ exports.OAuth.prototype._performSecureRequest= function( oauth_token, oauth_toke request.end(); } -exports.OAuth.prototype.getOauthAccessToken= function(oauth_token, oauth_token_secret, callback) { +exports.OAuth.prototype.getOAuthAccessToken= function(oauth_token, oauth_token_secret, callback) { this._performSecureRequest( oauth_token, oauth_token_secret, "GET", this._accessUrl, null, function(error, data, response) { if( error ) callback(error); else {