This commit is contained in:
邹宗楠
2023-01-30 14:45:04 +08:00
parent a67c57c92e
commit fac70ca58a
4 changed files with 73 additions and 10 deletions

View File

@@ -0,0 +1,17 @@
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"` // 错误消息
}