使用wget无法理解application / vnd.amundsen.maze + xml

时间:2014-12-13 21:45:42

标签: xml api rest wget

我正在浏览这个Maze tutorial,我正在学习Restful API。

在上面链接的资源中,它说“客户端可以通过向服务器发送HTTP GET请求来请求可用的迷宫列表。”

如何使用wget获取此可用资源列表。我正在学习wget如果有一种方法可以使用js在文本编辑器中编写它,我想看看它是如何完成的。

C:\path\practice\wget> wget -S -q http://www.example.org --header=" Content-Type : application/vnd.amundsen.maze+xml"

windows cli说::: wget: - header:无效的标题`Content-Type application / vnd.amundsen.maze + xml

有些人可以告诉我一种使用wget获取此可用迷宫列表的方法。这将非常有帮助。谢谢你的时间。

1 个答案:

答案 0 :(得分:0)

您应该删除Content-Type之前和之后的空格。这将有效:

wget -S -q http://www.example.org --header="Content-Type: application/vnd.amundsen.maze+xml"