我正在尝试使用参数调用报表服务器报表并将其另存为PDF。它在浏览器中工作正常。 PDF文件已保存,但我无法选择保存位置。
我正在尝试使用Powershell来实现它。
$URI = "http://servername/ReportServer/Pages/ReportViewer.aspx?%2fReportname%2fTemp&rs:Format=PDF&Guid=parameter1&StartDate=01-02-2018&StartTime=07:00&EndDate=01-02-2018&EndTime=17:00"
$Outputfile = "C:\temp\test.pdf"
(Invoke-WebRequest -Uri $URI -OutFile $Outputfile -UseDefaultCredentials -TimeoutSec 30)
Powershell代码下载的PDF格式正确,但没有数据。它说“没有数据可用”。有什么想法吗?