司机位置
功能: 获取行程对应司机的实时坐标位置,请求间隔不小于5s(连续多次5s内请求将会封禁账号),行程结束后不可查询
支持运力: 所有
资源URL
GET: v1/orders/{didi_oid}/location
注: 需单独审核,默认不开放
请求参数:
参数名 | 类型 | 说明 |
---|---|---|
didi_oid | string | 行程ID |
请求示例:
curl -X GET
-H "Content-Type: application/x-www-form-urlencoded"
-H "Authorization: Bearer domain|{access_token}"
'https://api.xiaojukeji.com/v1/orders/didi_oid/location'
返回参数说明:
参数名 | 类型 | 说明 |
---|---|---|
oid | string | 第三方订单id |
didi_oid | string | 滴滴订单id |
status | string | 行程状态(见备注) |
driver | array | 司机信息 |
lng | float | 司机当前纬度 |
lat | float | 司机当前经度 |
map_type | string | 坐标系类型,默认为固定值soso |
返回示例:
成功:http status 200
失败:http status 非200
{
"oid": "123123123",
"didi_oid": "didi_oid",
"status": "Charging",
"driver": {
"lng": 116.299539,
"lat": 40.049574
},
"map_type": "soso"
}