json 解码/解组在 json 中没有按预期工作

我正在使用的结构如下:


type Token struct {

    AccessToken  string    `json:"access_token"`

    TokenType    string    `json:"token_type"`

    RefreshToken string    `json:"refresh_token"`

    Expiry       time.Time `json:"expires_in"`

}

解码响应后,我尝试打印响应:


var authToken Token

json.Unmarshal(response.Body, &authToken)


        fmt.Println("-------------------- accessToken " + authToken.AccessToken)

        fmt.Println("-------------------- refreshToken " + authToken.RefreshToken)

        fmt.Println("-------------------- expires ", authToken.Expiry)

        fmt.Println("--------------------  type " + authToken.TokenType)

只有第一个 AccessToken 有值,其他都是空的。


我也试过使用json.NewDecoder(response.Body).Decode(&authToken)


同样的结果。


我的方法有什么问题吗?


摇曳的蔷薇
浏览 125回答 1
1回答

吃鸡游戏

您必须检查来自json.Unmarshal或来自的错误decoder.Decode。它"expires_in": 299,不是时间,它是 int。代码:package mainimport (  "encoding/json"  "fmt"  "net/http")type Token struct {  AccessToken  string    `json:"access_token"`  TokenType    string    `json:"token_type"`  RefreshToken string    `json:"refresh_token"`  Expiry       int       `json:"expires_in"`}func main() {  http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {    decoder := json.NewDecoder(r.Body)    var authToken Token    if err := decoder.Decode(&authToken); err != nil {      fmt.Fprintf(w, "error: %s", err)      return    }    fmt.Println("-------------------- accessToken " + authToken.AccessToken)    fmt.Println("-------------------- refreshToken " + authToken.RefreshToken)    fmt.Println("-------------------- expires ", authToken.Expiry)    fmt.Println("--------------------  type " + authToken.TokenType)  })  http.ListenAndServe(":8000", nil)}卷曲:curl -XPOST 'http://localhost:8000' -H 'Content-Type: application/json' -d '{  "access_token": "at",  "refresh_token": "rt",  "expires_in": 299,  "token_type": "bearer"}'结果:-------------------- accessToken at-------------------- refreshToken rt-------------------- expires  299--------------------  type bearer
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Go