- OASIS SIM(废弃)
- sensors
- dynamics
- cars
- car_models
- jobs
- tasks
- scenarios
- scenario_groups
- scenario_elements
- maps
- test_cases
- scores
- traffic_flows
- controllers
- weathers
- lights
- logs(废弃)
- emails
- users
- evaluates
- file_operator
- trashes(已废弃)
- configs
- licenses
- 查询tokenGET
获取所有车辆控制系统
GET
/controllers/
请求参数
Query 参数
category
string
必需
示例值:
in
pagenum
string
可选
示例值:
1
pagesize
string
可选
示例值:
10
type
string
可选
示例值:
Oasis
locale
string
可选
示例值:
zhCN
Header 参数
Authorization
string
可选
示例值:
bearer {{token}}
Content-Type
string
可选
示例值:
application/json
User-Agent
string
可选
示例值:
Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request GET '/controllers/?category=in&pagenum=1&pagesize=10&type=Oasis&locale=zhCN' \
--header 'Authorization: bearer {{token}}' \
--header 'User-Agent: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36' \
--header 'Content-Type: application/json'
返回响应
🟢200成功
application/json
Body
code
integer
响应状态码
message
string
提示信息
result
object
必需
示例
{
"code": 200,
"result": {
"pageinfo": {
"total_num": 1,
"total_page_num": 1
},
"datas": [
{
"created_at": "2024-06-24 11:24:55",
"custom_type": null,
"planning": true,
"name": "演示算法",
"name_en": "Demo Algorithm",
"id": 1,
"user_id": 1,
"company_id": 1,
"invalid": 0,
"type": "algorithm",
"routing": false,
"perception": false,
"control": true,
"system_data": true,
"driver_params": {
"safety_time": 4,
"emergency_param": 0.4,
"identify_object": true,
"desired_velocity": 7,
"obey_speed_limit": true,
"urge_to_overtake": false,
"desired_deceleratio": 10,
"obey_traffic_lights": true,
"desired_acceleration": 10,
"lane_changing_dynamic": false
},
"modified_at": "2024-07-05 10:30:46",
"desc_en": "",
"desc": "",
"versions": [
{
"id": 1,
"version": "1.0"
}
]
}
]
},
"message": ""
}
🟢200OK
修改于 2024-11-08 06:11:39