0

I wrote some Azure functions. Deployed them to Azure. Added Azure authentication so I would have to pass a bearer token to call them from azure.

Is there any way I could also require bearer authentication when running them locally from Visual studio with the Azure Function runtime?

Justin Dearing
  • 14,270
  • 22
  • 88
  • 161

1 Answers1

1

Unfortunately, this is not currently supported. The reason is that the Azure authentication is happening in an IIS module which only runs in the Azure Websites service and not locally.

Mike S
  • 3,058
  • 1
  • 22
  • 12