Curl 错误:无法解析主机
我正在尝试使用 CURL 下载 flurry 分析异常日志。我正在遵循 this< 中的指南/a> 页面。
当我尝试在命令提示符中执行以下操作时,curl 说 curl: (6) 无法解析主机:\;找不到主机
curl --cookie ./flurry.jar \ http://dev.flurry.com/exceptionLogsCsv.do?projectID=49999&versionCut=versionsAll&intervalCut=allTime&direction=1&offset=23&pageSize=15 \ --output "exception#1.csv"
我在这方面花了很多时间,但仍然没有设法让它下载数据。请问有人可以帮忙吗?
I am trying to download flurry analytics exception logs using CURL. I am following the guide in this page.
When i try to do the following in command prompt, curl says curl: (6) Could not resolve host: \; Host not found
curl --cookie ./flurry.jar \ http://dev.flurry.com/exceptionLogsCsv.do?projectID=49999&versionCut=versionsAll&intervalCut=allTime&direction=1&offset=23&pageSize=15 \ --output "exception#1.csv"
I have spent significant time on this but still havent managed to get it to download the data. Please could any one help?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
删除那些反斜杠。它们仅用于多行命令(如您引用的指南所示)。
Remove those backslashes. They only used for multi-line command (as shown on that guide you referenced).