像golang中的请求一样发送curl

时间:2017-12-16 22:08:36

标签: json curl go

我尝试在golang中发送这样的请求,但没有结果:

curl -s -i -H "Accept: application/json" "http://192.168.1.183:8080/json.htm?type=command&c=getauth&param=udevice&idx=9&nvalue=0&svalue=10;43;2"

怎么做?

我想发送数据做Domoticz家庭自动化系统。 我得到了Anser:

{
   "status" : "ERR"
}

但应该是:

{
"status" : "OK",
"title" : "Update Device"
}

我试试这段代码:

    b := bytes.NewBufferString("type=command&c=getauth&param=udevice&idx=9&nvalue=0&svalue=10;43;2")
    res, _ := http.Post("http://192.168.1.183:8080/json.htm", "Accept: application/json", b)

3 个答案:

答案 0 :(得分:3)

请注意,在您的初始curl命令中,您错过了-X POST参数 generated code将是:

// Generated by curl-to-Go: https://mholt.github.io/curl-to-go

req, err := http.NewRequest("POST", "http://192.168.1.183:8080/json.htm?type=command&c=getauth&param=udevice&idx=9&nvalue=0&svalue=10;43;2", nil)
if err != nil {
    // handle err
}
req.Header.Set("Accept", "application/json")

resp, err := http.DefaultClient.Do(req)
if err != nil {
    // handle err
}
defer resp.Body.Close()

答案 1 :(得分:2)

你的curl命令和Go代码几乎完全不相同。

  1. 您的Go发送POST请求,并发送GET请求。
  2. 你的curl命令设置了一个Accept标头,你的Go代码没有。
  3. 你的Go命令发送一个正文,你的curl命令没有。
  4. 你的curl命令发送URL参数,你的Go代码没有。
  5. 你的go代码的卷曲等效于:

    curl -s -i -X POST -H "Accept: application/json" "http://192.168.1.183:8080/json.htm" -d "type=command&c=getauth&param=udevice&idx=9&nvalue=0&svalue=10;43;2"
    

    在Go中模拟curl命令的最简单方法是:

    req, err := http.NewRequest("GET", "http://192.168.1.183:8080/json.htm?type=command&c=getauth&param=udevice&idx=9&nvalue=0&svalue=10;43;2", nil)
    if err != nil {
        panic(err)
    }
    req.Header.Add("Accept", "application/json")
    resp, err := http.DefaultClient.Do(req)
    

答案 2 :(得分:-2)

这对我有用:

    b := bytes.NewBufferString(" ")
    res, _ := http.Post("http://192.168.1.183:8080/json.htm?type=command&c=getauth&param=udevice&idx=9&nvalue=0&svalue=10;43;2", "Accept: application/json", b)

但我认为这不是最佳方式。