Skip to content

Commit 4daaf69

Browse files
Merge pull request #1498 from sharok/fix_oauth_encoding
Encode oauth_token. Fixes #1495
2 parents 2ebdbc2 + 68c0776 commit 4daaf69

File tree

2 files changed

+29
-3
lines changed

2 files changed

+29
-3
lines changed

src/RestSharp/Authenticators/OAuth/OAuthWorkflow.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
// distributed under the License is distributed on an "AS IS" BASIS,
1111
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1212
// See the License for the specific language governing permissions and
13-
// limitations under the License.
13+
// limitations under the License.
1414

1515
using System;
1616
using System.Collections.Generic;
@@ -215,7 +215,7 @@ WebPairCollection GenerateAuthParameters(string timestamp, string nonce)
215215
new WebPair("oauth_version", Version ?? "1.0")
216216
};
217217

218-
if (!Token.IsEmpty()) authParameters.Add(new WebPair("oauth_token", Token));
218+
if (!Token.IsEmpty()) authParameters.Add(new WebPair("oauth_token", Token, true));
219219

220220
if (!CallbackUrl.IsEmpty()) authParameters.Add(new WebPair("oauth_callback", CallbackUrl, true));
221221

test/RestSharp.Tests/OAuth1AuthenticatorTests.cs

+27-1
Original file line numberDiff line numberDiff line change
@@ -140,5 +140,31 @@ public void Authenticate_ShouldAddSignatureToRequestAsSeparateParameters_OnUrlOr
140140
)
141141
);
142142
}
143+
144+
[Test]
145+
[TestCase(OAuthType.AccessToken, "Token", "Token")]
146+
[TestCase(OAuthType.ProtectedResource, "Token", "Token")]
147+
[TestCase(OAuthType.AccessToken, "SVyDD+RsFzSoZChk=", "SVyDD%2BRsFzSoZChk%3D")]
148+
[TestCase(OAuthType.ProtectedResource, "SVyDD+RsFzSoZChk=", "SVyDD%2BRsFzSoZChk%3D")]
149+
public void Authenticate_ShouldEncodeOAuthTokenParameter(OAuthType type,string value, string expected)
150+
{
151+
// Arrange
152+
const string url = "https://no-query.string";
153+
154+
var client = new RestClient(url);
155+
var request = new RestRequest();
156+
_authenticator.Type = type;
157+
_authenticator.Token = value;
158+
159+
// Act
160+
_authenticator.Authenticate(client, request);
161+
162+
// Assert
163+
var authParameter = request.Parameters.Single(x => x.Name == "Authorization");
164+
var authHeader = (string) authParameter.Value;
165+
166+
Assert.IsNotNull(authHeader);
167+
Assert.IsTrue(authHeader.Contains($"oauth_token=\"{expected}\""));
168+
}
143169
}
144-
}
170+
}

0 commit comments

Comments
 (0)