|
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;