Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

HTTP Basic Auth and Azure Functions

In an in Azure Functions with HTTP trigger, where in the HttpRequestMessage instance are the credentials (username and password) in a basic HTTP Authentication scheme?

like image 629
Victor Avatar asked Sep 03 '25 01:09

Victor


1 Answers

I was able to find a username:password string encoded in base64 in:

request.Headers.Authorization.Parameter

Where request is an instance of HttpRequestMessage

like image 176
Victor Avatar answered Sep 05 '25 13:09

Victor