Reputation: 14938
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?
Upvotes: 0
Views: 105
Reputation: 3169
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.
Upvotes: 1