Golang API编码问题

时间:2016-07-09 02:30:52

标签: json rest go

我正在尝试通过golang使用JSON apis,但是很难得到回复的响应。我正在使用返回

的示例JSON端点http://jsonplaceholder.typicode.com/posts/1
{
  "userId": 1,
  "id": 1,
  "title": "sunt aut facere repellat provident occaecati excepturi optio reprehenderit",
  "body": "quia et suscipit\nsuscipit recusandae consequuntur expedita et cum\nreprehenderit molestiae ut ut quas totam\nnostrum rerum est autem sunt rem eveniet architecto"
}

这是我的代码来自this Stack Overflow Answer

package main

import (
    "encoding/json"
    "net/http"
    "fmt"
)

type Post struct {
    UserID string
    ID string
    Title string
    Body string
}

func getJson(url string, target interface{}) error {
    r, err := http.Get(url)
    if err != nil {
        return err
    }
    defer r.Body.Close()
    fmt.Println(r)
    return json.NewDecoder(r.Body).Decode(target)
}

func main() {
    post := new(Post) // or &Foo{}
    getJson("http://jsonplaceholder.typicode.com/posts/1", &post)
    println(post.Body)

}

这是输出:

go run main.go 
&{200 OK 200 HTTP/1.1 1 1 map[Cf-Cache-Status:[HIT] Cf-Ray:[2bf857d2e55e0d91-SJC] Access-Control-Allow-Credentials:[true] Cache-Control:[public, max-age=14400] Expires:[Sat, 09 Jul 2016 06:28:31 GMT] X-Content-Type-Options:[nosniff] Server:[cloudflare-nginx] Date:[Sat, 09 Jul 2016 02:28:31 GMT] Connection:[keep-alive] X-Powered-By:[Express] Etag:[W/"124-yv65LoT2uMHrpn06wNpAcQ"] Content-Type:[application/json; charset=utf-8] Set-Cookie:[__cfduid=d0c4aacaa5db8dc73c59a530f3d7532af1468031311; expires=Sun, 09-Jul-17 02:28:31 GMT; path=/; domain=.typicode.com; HttpOnly] Pragma:[no-cache] Via:[1.1 vegur] Vary:[Accept-Encoding]] 0xc8200ee100 -1 [chunked] false map[] 0xc8200da000 <nil>}

我知道端点有效。这是编码问题还是别的什么?我在Mac OSX 10.11.15上。

由于

2 个答案:

答案 0 :(得分:3)

如果您打印错误,则解组时会出现错误:cannot unmarshal number into Go value of type string。 UserId和Id应为int。

请不要忽视错误!

试试这段代码:

package main

import (
    "encoding/json"
    "fmt"
    "net/http"
)

type Post struct {
    UserID int
    ID     int
    Title  string
    Body   string
}

func getJson(url string, target interface{}) error {
    r, err := http.Get(url)
    if err != nil {
        return err
    }
    defer r.Body.Close()
    fmt.Println(r)
    return json.NewDecoder(r.Body).Decode(target)
}

func main() {
    post := new(Post) // or &Foo{}
    err := getJson("http://jsonplaceholder.typicode.com/posts/1", &post)
    if err != nil {
        panic(err)
    }

    println(post.Body)
    fmt.Printf("Post: %+v\n", post)
}

编辑: 为什么我不能打印出响应正文的内容并在命令行中看到它?它编码了吗? Ans:HTTP请求或响应曾经是由response-header字段定义的格式或编码。

通过解码可能已应用的任何Transfer-Encoding来确保安全和正确传输消息,从消息体中获取响应主体。

如果您打印:fmt.Println("Header: %#v\n", r.Header)
你会看到,Content-Type:[application/json; charset=utf-8]这就是你用Json解码的原因。它也可以是xml。

答案 1 :(得分:0)

也许你应该试试这个:

package main

import (
    "encoding/json"
    "fmt"
    "io/ioutil"
    "net/http"
)   

type Result struct {
    UserID int    `json:"userId"`
    ID     int    `json:"id"`
    Title  string `json:"title"`
    Body   string `json:"body"`
}   

func main() {

    url := "http://jsonplaceholder.typicode.com/posts/1"

    req, _ := http.NewRequest("GET", url, nil)

    res, _ := http.DefaultClient.Do(req)

    defer res.Body.Close()
    body, _ := ioutil.ReadAll(res.Body)

    var result Result
    err := json.Unmarshal(body, &result)
    if err != nil {
        fmt.Println(err)
    }   

    fmt.Println(res)
    fmt.Println(string(body))

    fmt.Println(result)
    //fmt.Println(result.Title)
    //fmt.Println(result.Body)
}

您将获得Result结构