18 lines
582 B
Go
18 lines
582 B
Go
package kuaishou_mini
|
|
|
|
// GetLoginAuth 快手授权返回
|
|
type GetLoginAuth struct {
|
|
Result int `json:"result"` // 返回数据条数
|
|
Error string `json:"error"` //错误类型
|
|
ErrorMsg string `json:"error_msg"` // 错误消息
|
|
SessionKey string `json:"session_key"` // 会话秘钥
|
|
OpenId string `json:"open_id"` // 用户当前小程序下唯一id
|
|
|
|
}
|
|
|
|
type ResultInfo struct {
|
|
Result int `json:"result"` // 返回数据条数
|
|
Error string `json:"error"` //错误类型
|
|
ErrorMsg string `json:"error_msg"` // 错误消息
|
|
}
|