jrconlin/oauthsimple

Cannot generate new signature in JavaScript library

Opened this issue · 0 comments

chao commented

var sigString = this._oauthEscape(this._action) + '&' + this._oauthEscape(this._path) + '&' + this.normParams;

var sigString = this._oauthEscape(this._action) + '&' + this._oauthEscape(this._path) + '&' + this.normParams;

Should be

var sigString = this._oauthEscape(this._action) + '&' + this._oauthEscape(this._path) + '&' + normParams;