我想在current date
执行时将参数传递给 Azure 调度程序操作 URL。
例如,
https://<server_ip>/some/job/endpoint?startdate={0}&enddate={1}
占位符将传递当前日期的位置,如果可能的话,进行一些简单的评估以将 1 天添加到 startdate 以作为 enddate。
有没有办法使用 Azure 调度程序来做到这一点?
我想在current date
执行时将参数传递给 Azure 调度程序操作 URL。
例如,
https://<server_ip>/some/job/endpoint?startdate={0}&enddate={1}
占位符将传递当前日期的位置,如果可能的话,进行一些简单的评估以将 1 天添加到 startdate 以作为 enddate。
有没有办法使用 Azure 调度程序来做到这一点?
Probably not since there is a open vote for supporting variables for Azure Scheduler. However, you could use Azure function with a time based trigger that performs your request including the date.