Remove excess double URL encoding introduced by fixes for issue #64
This commit is contained in:
		@ -189,7 +189,7 @@ exports.OAuth.prototype._createSignature= function(signatureBase, tokenSecret) {
 | 
			
		||||
   if( tokenSecret === undefined ) var tokenSecret= "";
 | 
			
		||||
   else tokenSecret= this._encodeData( tokenSecret ); 
 | 
			
		||||
   // consumerSecret is already encoded
 | 
			
		||||
   var key= this._encodeData(this._consumerSecret) + "&" + this._encodeData(tokenSecret);
 | 
			
		||||
   var key= this._consumerSecret + "&" + tokenSecret;
 | 
			
		||||
 | 
			
		||||
   var hash= ""
 | 
			
		||||
   if( this._signatureMethod == "PLAINTEXT" ) {
 | 
			
		||||
 | 
			
		||||
		Reference in New Issue
	
	Block a user