3.47Setting custom authentication
Created on Aug 17, 2026~1 min read
Adds a custom Authorization header to the request, following the Schema value format.
HttpRequestBuilder.Post("https://furion.net/") .AddAuthentication(new AuthenticationHeaderValue("your-schema", "your-secret"));HttpRequestBuilder.Post("https://furion.net/") .AddAuthentication("your-schema", "your-secret"); // Overload version that simplifies the new AuthenticationHeaderValue operation