为了账号安全,请及时绑定邮箱和手机立即绑定

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

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

Go
摇曳的蔷薇 2023-06-05 17:12:03
我正在使用的结构如下: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 Tokenjson.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)同样的结果。我的方法有什么问题吗?
查看完整描述

1 回答

?
吃鸡游戏

TA贡献1829条经验 获得超7个赞

您必须检查来自json.Unmarshal或来自的错误decoder.Decode。

它"expires_in": 299,不是时间,它是 int。


代码:


package main


import (

  "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


查看完整回答
反对 回复 2023-06-05
  • 1 回答
  • 0 关注
  • 110 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信