13 lines
417 B
Go
Raw Permalink Normal View History

2019-04-22 02:59:20 +00:00
package model
// WeiboAccessResp weibo access response
type WeiboAccessResp struct {
Token string `json:"access_token"`
Refresh string `json:"refresh_token"`
Expires int64 `json:"expires_in"` // access_token的生命周期单位是秒数
OpenID string `json:"uid"`
Code int `json:"error_code"`
Error string `json:"error"`
Description string `json:"error_description"`
}