我正在尝试通过Powershell发布Webjob。
我关注了以下文章
https://github.com/projectkudu/kudu/wiki/Deploying-a-WebJob-using-PowerShell-ARM-Cmdlets
我在Azure Release Def中将脚本与Azure Powershell任务一起使用。
我遇到错误
缺少Content-Disposition标头。
在下面的脚本
Invoke-RestMethod -Uri $apiUrl -Headers $Header -Method put -InFile "<Complete path of the file>\
<filename>.zip" -ContentType 'application/zip'
我已经在标题中添加了Content-Disposition
,如下所示,但仍然出现错误。
$Header = @{
'Content-Disposition'='attachment; attachment; filename=Copy.zip'
'Authorization'=$accessToken
}
解决方法。