授权-令牌详情
POST
/gateway/oauth.token.detail
请求参数
Body 参数application/json
openId
string
用户身份Id
示例
{
"openId": "0ca626f8-3c33-4136-853c-d28a5f7dda06"
}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://union.lottefuture.com/gateway/oauth.token.detail' \
--header 'Content-Type: application/json' \
--data-raw '{
"openId": "0ca626f8-3c33-4136-853c-d28a5f7dda06"
}'
返回响应
🟢200成功
application/json
Body
openId
string
用户身份Id
userId
string
用户Id
userName
string
用户名
platform
string
平台
expireTime
string
过期时间
firstTime
string
首次授权时间
lastTime
string
上次授权时间
示例
{
"openId": "0ca626f8-3c33-4136-853c-d28a5f7dda06",
"platform": "TAOBAO",
"userId": "2435704681",
"userName": "阳光男孩628438",
"expireTime": "2023-04-29 14:39:04",
"firstTime": "2023-01-04 18:34:39",
"lastTime": "2023-01-29 14:39:04"
}
修改于 2023-01-29 09:43:37