- App/H5对接流程:
- API开放接口对接流程
- 小程序对接流程v1.1
- 数据推送说明
- 基础信息
- 电影票接口
- 卡券接口
- 点餐接口
企业用户信息 v1.1
GET
/api/oauth/user_info
OAuth
请求参数
Authorization
在 Header 添加参数
Authorization
,其值为在 Bearer 之后拼接 Token示例:
Authorization: Bearer ********************
返回响应
🟢200Success
application/json
Body
code
integer <int32>
code
message
string | null
message
data
object
可选
id
string <uuid>
可选
appId
string | null
可选
appSecret
string | null
app秘钥
enterpriseName
string | null
店铺名称
avatarUrl
string | null
头像地址
enterpriseState
integer <int32>
状态
createTime
string <date-time>
创建时间
balance
number <double>
余额
示例
{
"code": 0,
"message": "string",
"data": {
"id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
"appId": "string",
"appSecret": "string",
"enterpriseName": "string",
"avatarUrl": "string",
"enterpriseState": 0,
"createTime": "2019-08-24T14:15:22Z",
"balance": 0
}
}