wget SSRS report
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.
精彩评论