I am new to azure web functions.
I created a web function and got it working on localhost and was able to step through it, calling it from my Blazor webapp.
I changed the url to the one listed in my launch code when I published as the base address. (No longer listing a port number) and published both the Blazor app and the Azure Function to Azure. It appears the function is not being called at all.
I have searched for clues and one was to set it to anonymous which I did from the default value.
as far as I can tell the function is not being called at all on azure, but I am not sure. I see mention of a password and such, but since I have anonymous enabled, I have not looked further at this.
Any suggestions? Is there a magic setting I didn't know to do?
Thanks
`
[FunctionName("intent")]
public static async Task<string> RunIntentToPurchase(
[HttpTrigger(AuthorizationLevel.Anonymous, "get", "post", Route = null)] HttpRequest req,
ILogger log)
{