跳转到主要内容
GET
/
v1
/
sso
/
authorize
获取授权码 (ST)
curl --request GET \
  --url https://api.runly.pro/v1/sso/authorize \
  --header 'Authorization: Bearer <token>'
{
  "status": {
    "code": 200,
    "message": "OK",
    "trace_id": "tr_sso_auth"
  },
  "data": {
    "code": "st_xyz789",
    "expires_in": 300
  },
  "usage": {
    "latency_ms": 20
  }
}

授权

Authorization
string
header
必填

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

查询参数

app_id
string
必填

响应

200 - application/json

授权结果

status
object
必填
data
object
output
object
usage
object