Fixed getOAuthAccessToken (rather than getOauthAccessToken).

This commit is contained in:
Mark Wubben 2010-07-28 19:22:57 +02:00
parent 171b6d4599
commit e38ab951f1

View File

@ -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 {