[TOC]
簡要描述
獲取用戶token接口
請求URL
https://ggtools.thinkerx.com/open-api/token
請求方式
POST
參數(shù)
content_type: application/json
參數(shù)名 | 必選 | 類型 | 說明 |
---|---|---|---|
app_key | 是 | string | 平臺簽發(fā)key |
timestamp | 是 | string | 時間戳,精確到秒 |
account | 是 | string | 平臺用戶標(biāo)識 |
返回示例
{ "status": 1, "msg": "請求成功", "data": { "token": "token", "token_expire": 43200, "refresh_token": "refresh_token", "refresh_token_expire": 4320000 } }
返回參數(shù)說明
參數(shù)名 | 類型 | 說明 |
---|---|---|
status | int | 請求狀態(tài),1:成功,0:失敗 |
msg | string | 狀態(tài)說明 |
data | object | 數(shù)據(jù) |
token | string | token值 |
token_expire | integer | token 有效時長 |
refresh_token | string | refresh_token |
refresh_token_expire | integer | refresh_token 有效時長 |