Hi Alex ,
Yes, you can emulate EasyAuth locally for development. Install Azure Functions Core Tools and run your app locally using func start. Configure your local.settings.json with "AzureWebJobsSecretStorageType": "files". This allows authentication to be stored locally. For full functionality, mock user identities with a tool like IdentityServer. Ensure your app is configured to use the same authentication settings locally and in Azure. Although not an exact replica, this approach allows you to develop and test EasyAuth features locally, enhancing development speed before deploying to Azure for final testing.
Regards,
Saravanan Ganesan.