Open Francisco-Gamino opened 2 years ago
Define an Http trigger function with a Authorization set to 'anonymous'.
function AnotherFunction { [Function()] param ( [HttpTrigger(Authorization = 'anonymous')] $Request ) [HttpResponseContext]@{ StatusCode = [HttpStatusCode]::OK Body = "Hello form AnotherFunction!" } | Push-OutputBinding -Name Response }
The Core Tools does show that the endpoint is available:
However, after calling into the endpoint, the following exception is thrown:
Define an Http trigger function with a Authorization set to 'anonymous'.
The Core Tools does show that the endpoint is available:
However, after calling into the endpoint, the following exception is thrown: