用户访问滴滴H5凭证
功能:获取用户访问滴滴H5凭证
资源URL:
GET: v1/user/clientToken
请求参数
参数名称 | 类型 | 说明 |
---|---|---|
client_uid | string | 乘客在第三方的uid,不变且唯一 |
phone | string | 用户手机号 |
请求示例:
curl -X GET
-H 'content-type: application/json'
-H 'Authorization: Bearer domain|{access_token}'
'https://api.xiaojukeji.com/v1/user/clientToken'
-d '{"client_uid":"xxx","phone":11100011296}'
返回参数说明:
参数名 | 类型 | 说明 |
---|---|---|
openid | string | 滴滴侧的用户openid |
third_token | string | 访问token |
返回成功示例:
成功:http status 200
{
"openid":"52597C234FE6C4F74829C1802576FSDF",
"third_token": "xxxxx"
}
返回失败示例:
失败:http status 非200
{
"error":"code(40010)",
"error_detail":"参数错误:client_uid"
}