diff --git a/RestSharp/Authenticators/OAuth1Authenticator.cs b/RestSharp/Authenticators/OAuth1Authenticator.cs index faac64aaa..fa5062ff2 100644 --- a/RestSharp/Authenticators/OAuth1Authenticator.cs +++ b/RestSharp/Authenticators/OAuth1Authenticator.cs @@ -227,7 +227,7 @@ private string GetAuthorizationHeader(WebPairCollection parameters) var oathParameters = parameters.Where(parameter => !parameter.Name.IsNullOrBlank() && !parameter.Value.IsNullOrBlank() && - parameter.Name.StartsWith("oauth_") + (parameter.Name.StartsWith("oauth_") || parameter.Name.StartsWith("x_auth_")) ).ToList(); foreach (var parameter in oathParameters) {