Curl 错误:无法解析主机

发布于 2025-01-04 03:40:51 字数 543 浏览 0 评论 0原文

我正在尝试使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

拒绝两难 2025-01-11 03:40:52

删除那些反斜杠。它们仅用于多行命令(如您引用的指南所示)。

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"

Remove those backslashes. They only used for multi-line command (as shown on that guide you referenced).

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"
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文