GitHub 使用 node.js 发布资产下载

GitHub release asset download with node.js

我想在 Node.js 中使用 http.get 方法在 GitHub 版本中使用 API 编写一个自动下载器并且我收到 302 错误。我能做什么?

HTTP 302 不是错误:

The HTTP response status code 302 Found is a common way of performing URL redirection.

您可以通过检索 Location 响应 header.

中显示的 URL 来处理 HTTP 302 Found

您可能要考虑使用 the request library as suggested in this answer,而不是使用 http.getrequest 应该自动跟随重定向。