如何在 Azure 调度程序中创建 JSON POST 作业
How to create a JSON POST job in Azure Scheduler
我习惯使用 Fiddler,所以可能遗漏了一些简单的东西,但是...我需要在 Azure 中创建一个每月 POST 到 API 的计划作业。一切顺利,直到我尝试输入 BODY 内容:
当 Azure 尝试创建作业时,它 returns 出错并且无法创建它:
At least one resource deployment operation failed. Please list
deployment operations for details. Please see https://aka.ms/arm-debug
for usage details. (Code: DeploymentFailed)
Content-Type must be provided with body (Code: BadRequest)
我不知道哪里出了问题,显然内容类型是。谁能帮帮我?
用户错误 101。Content-Type: application/json
应作为 header 应用,而不是在正文结构中应用:
感谢@Jack Zeng 的评论
我习惯使用 Fiddler,所以可能遗漏了一些简单的东西,但是...我需要在 Azure 中创建一个每月 POST 到 API 的计划作业。一切顺利,直到我尝试输入 BODY 内容:
当 Azure 尝试创建作业时,它 returns 出错并且无法创建它:
At least one resource deployment operation failed. Please list deployment operations for details. Please see https://aka.ms/arm-debug for usage details. (Code: DeploymentFailed)
Content-Type must be provided with body (Code: BadRequest)
我不知道哪里出了问题,显然内容类型是。谁能帮帮我?
用户错误 101。Content-Type: application/json
应作为 header 应用,而不是在正文结构中应用:
感谢@Jack Zeng 的评论