RestSharp.Authenticators.Digest 1.4.0

RestSharp.DigestAuthenticator

Extends RestSharp features for digest authentication

nuget license

Examples

namespace Example
{
    using RestSharp;
    using RestSharp.Authenticators.Digest;
    using System;

    public class Program
    {
        public static void Main(string[] args)
        {
            var client = new RestClient("http://api.myhost.com/api/v1");
            client.Authenticator = new DigestAuthenticator("user", "password");
            var request = new RestRequest("values", Method.GET);
            request.AddHeader("Content-Type", "application/json");

            var response = client.Execute(request);

            Console.WriteLine(response.StatusCode);
            Console.WriteLine(response.Content);
            Console.ReadKey(true);
        }
    }
}

No packages depend on RestSharp.Authenticators.Digest.

RELEASE.md

.NET Standard 2.0

Version Downloads Last updated
2.1.0 4 10/31/2025
2.0.0 1 11/08/2025
1.6.0 1 11/08/2025
1.5.0 1 11/08/2025
1.4.0 1 11/08/2025
1.3.1 1 11/08/2025
1.3.0 1 11/08/2025
1.2.0 1 11/08/2025
1.1.0 1 11/05/2025
1.0.2 1 11/08/2025
1.0.1 1 11/08/2025
1.0.0 1 11/08/2025