我正在使用azure web job一个时间表。我想把它作为按需格式,并希望在点击我网站上的按钮后开始工作。是否可能。
提前致谢。
答案 0 :(得分:0)
您可以使用WebJobs REST API触发WebJob。
POST /api/triggeredwebjobs/{job name}/run
答案 1 :(得分:0)
Azure Scheduler API也可用。如果触发调度程序,则调度程序又会触发Web作业。要访问调度程序API,您需要具有订阅/ Web应用程序访问权限的Azure AD凭据。它会动态提供WebJob REST APIs以及凭据。
答案 2 :(得分:0)
您可以通过WebJob API触发WebJob。 C#代码包含在以下帖子中:
http://chriskirby.net/blog/running-your-azure-webjobs-with-the-kudu-api
$("#steps").steps({
headerTag: "h3",
bodyTag: "section",
enableAllSteps: true,
transitionEffect: "slide",
stepsOrientation: "vertical",
startIndex: 1, // Right here, you can set the index of the item you want to change.
});
这必须在服务器端完成,因为您不希望授权信息在客户端公开。