We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8763a56 commit fb62d4bCopy full SHA for fb62d4b
RestSharp/Authenticators/OAuth1Authenticator.cs
@@ -227,7 +227,7 @@ private string GetAuthorizationHeader(WebPairCollection parameters)
227
var oathParameters = parameters.Where(parameter =>
228
!parameter.Name.IsNullOrBlank() &&
229
!parameter.Value.IsNullOrBlank() &&
230
- parameter.Name.StartsWith("oauth_")
+ (parameter.Name.StartsWith("oauth_") || parameter.Name.StartsWith("x_auth_"))
231
).ToList();
232
foreach (var parameter in oathParameters)
233
{
0 commit comments