2019-04-22 02:59:20 +00:00

13 lines
417 B
Go
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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"`
}