dqpdb82600 2018-05-29 09:49
浏览 54
已采纳

在Go中使用外部API后,使用REST客户端保存数据

I am new to Go lang have created a REST client that consumes the alphavantage API

The JSON structure which comes up after I make a GET request looks as below. I only need the Time Series key data so that I do my own calculations. How do I get the data from the Time Series and save it so that I do my own manipulations of the data?

JSON

{
    "Meta Data": {
        "1. Information": "Intraday (1min) prices and volumes",
        "2. Symbol": "MSFT",
        "3. Last Refreshed": "2018-05-25 16:00:00",
        "4. Interval": "1min",
        "5. Output Size": "Compact",
        "6. Time Zone": "US/Eastern"
    },
    "Time Series (1min)": {
        "2018-05-25 16:00:00": {
            "1. open": "98.2700",
            "2. high": "98.4400",
            "3. low": "98.2650",
            "4. close": "98.3600",
            "5. volume": "2466507"
        }
    }
}

code for REST Client

package main

import (
    "net/http"
    "fmt"
    "io/ioutil"
    //encode and decode JSON streams
    "encoding/json"
)



func main() {
    response, err := http.Get("https://www.alphavantage.co/query?function=TIME_SERIES_INTRADAY&symbol=MSFT&interval=1min&apikey=demo")

    if err!=nil{
        fmt.Println(err)
        return
    }
    defer response.Body.Close()
    contents, err := ioutil.ReadAll(response.Body)
    if err != nil {
        fmt.Println(err)
        return
    }
    fmt.Println(string(contents))
}
  • 写回答

1条回答 默认 最新

  • dsi36131 2018-05-29 10:27
    关注

    Using an interface as suggested is a good idea, but in this case, since you know the structure of the response defining using an explicit type suffices and should be easier to work with:

    package main
    
    import (
        "encoding/json"
        "fmt"
        "io/ioutil"
        "log"
        "net/http"
    )
    
    type values map[string]string
    type TimeSeries struct {
        Item map[string]values `json:"Time Series (1min)"`
    }
    
    func main() {
        response, err := http.Get("https://www.alphavantage.co/query?function=TIME_SERIES_INTRADAY&symbol=MSFT&interval=1min&apikey=demo")
    
        if err != nil {
            fmt.Println(err)
            return
        }
        defer response.Body.Close()
        contents, err := ioutil.ReadAll(response.Body)
        if err != nil {
            fmt.Println(err)
            return
        }
        var ts TimeSeries
        err = json.Unmarshal(contents, &ts)
        if err != nil {
            log.Fatal(err)
        }
        fmt.Printf("%#v", ts)
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 下图接收小电路,谁知道原理
  • ¥15 装 pytorch 的时候出了好多问题,遇到这种情况怎么处理?
  • ¥20 IOS游览器某宝手机网页版自动立即购买JavaScript脚本
  • ¥15 手机接入宽带网线,如何释放宽带全部速度
  • ¥30 关于#r语言#的问题:如何对R语言中mfgarch包中构建的garch-midas模型进行样本内长期波动率预测和样本外长期波动率预测
  • ¥15 ETLCloud 处理json多层级问题
  • ¥15 matlab中使用gurobi时报错
  • ¥15 这个主板怎么能扩出一两个sata口
  • ¥15 不是,这到底错哪儿了😭
  • ¥15 2020长安杯与连接网探