UberFace
UberFace

Reputation: 485

AuthenticationHeaderValue:SharedAccessSignature on .NET CORE

I was authenticating a service with ASP.NET using

new AuthenticationHeaderValue("SharedAccessSignature", token);

now that my code uses ASP.NET core I don't have that class, so my code uses

using (var http = new HttpClient())
{
   using(var request = new HttpRequestMessage(…))
   {
       request.Headers.Add( WHAT)
   } 

}

But I don't know how that class was working.

Upvotes: 1

Views: 275

Answers (1)

UberFace
UberFace

Reputation: 485

finally intercepted old code with wireshark, seems I have to use:

request.Headers.Add("Authorization", $"SharedAccessSignature {token}");

Upvotes: 1

Related Questions