This is the Azure App Service Web App ->
https://dev*******api.azurewebsites.net/
This is the Http Post Service ->
https://dev*******api.azurewebsites.net/api/myItem/myPublisher
How can I schedule Http Post Service to run everyday from Azure ?
This is the Azure App Service Web App ->
https://dev*******api.azurewebsites.net/
This is the Http Post Service ->
https://dev*******api.azurewebsites.net/api/myItem/myPublisher
How can I schedule Http Post Service to run everyday from Azure ?
There is a service would meet your need: WebJob.
You could consider creating a scheduled WebJob. Configure the CRON Expression as:
0 0 0 * * *to run your background task everyday.