For a REST API hosted on an Azure App Service, how can I do the following every 10 minutes?
- Hit a certain API route that updates a txt file that lives on the App Service
- Copy the updated txt file onto an FTP server
For a REST API hosted on an Azure App Service, how can I do the following every 10 minutes?
Copyright © 2021 Jogjafile Inc.
You can just use Azure WebJobs to do that. Azure WebJobs is a functionality of Azure app service, you can use it directly if you are using Azure App Service.
Azure WebJobs supports CRON task natively which meets your requirement perfectly.