使用 JavaScript 创建对 Coinbase 的 GET 请求

Create a GET request to Coinbase with JavaScript

我对 JS 和 C# 有非常基本的了解,现在我正在尝试使用 JS 构建我的第一个 Web 应用程序。我想创建一个 Web 应用程序,它向 Coinbase 网站创建 GET 请求,并获取比特币、以太坊等的当前价格,并将其显示在我的 Web 应用程序中。 你能给我一个我可以开始的网站吗? 谢谢。

Coinbase 有 maintained API you can use to fetch the data you need. They support various solutions(REST、Websocket 等),具体取决于您的要求。

用于开始一般 Web 开发的资源是完全不同的野兽。我会建议 Angular 的 Heroes Tutorial, and from there read up on AJAX or Websockets (for the latter, I suggest socket.io).

预计工作 100-250 小时。