开发者

wget SSRS report

开发者 https://www.devze.com 2022-12-18 02:41 出处:网络
I\'m trying to pull a report down using the following: https://user:password@domain.com/ReportServer?%2fFolder+1%2fReportName&rs:Format=CSV&rs:Command=Render开发者_Python百科

I'm trying to pull a report down using the following:

https://user:password@domain.com/ReportServer?%2fFolder+1%2fReportName&rs:Format=CSV&rs:Command=Render开发者_Python百科

And it just pulls an html page and not the csv file. Any ideas?


What does the HTML file say? Something like "acess denied"? And while you're at it, try

wget --user bob --password 123456 'https://domain.com/ReportServer?%2fFolder+1%2fReportName&rs:Format=CSV&rs:Command=Render'

Make sure you are using quotes. Otherwise, the shell will cut off the command before the first ampersand.

0

精彩评论

暂无评论...
验证码 换一张
取 消