JT808协议
  1. service
JT808协议
  • web
    • service
      • 0x8103-终端参数设置
        POST
      • 0x8104-查询终端参数
        POST
      • 0x8201-位置信息查询
        POST
      • 0x8202-临时位置跟踪控制
        POST
      • 0x8300-文本信息下发
        POST
      • 0x8302-提问下发
        POST
      • 0x8801-摄像机立即拍照
        POST
      • 0x9101-实时音视频传输请求
        POST
      • 0x9102-音视频实时传输控制
        POST
      • 0x9201-下发远程录像回放请求
        POST
      • 0x9202-下发远程录像回放控制
        POST
      • 0x9205-查询资源列表
        POST
      • 0x9206-文件上传指令
        POST
      • 获取终端运行详情
        GET
      • 0x8801扩展-根据图片名称获取访问地址
        GET
    • notice
      • 获取终端实时运行情况
      • 解析报文
      • 报文详情
  • ftp
    • 0x9205-查询资源列表
      POST
    • 0x9206-文件上传指令
      POST
  1. service

0x8302-提问下发

开发中
开发环境
http://127.0.0.1:18000
开发环境
http://127.0.0.1:18000
POST
/api/v1/jt808/8302

请求参数

Body 参数application/json

示例
{
    "key": "14419999999",
    "command": 33538,
    "data": {
        "flag": 255,
        "questionContentLen": 3,
        "questionContent": "123",
        "answerList": [
            {
                "answerID": 1,
                "answerContentLen": 2,
                "answerContent": "AA"
            },
            {
                "answerID": 2,
                "answerContentLen": 1,
                "answerContent": "B"
            }
        ]
    }
}

请求示例代码

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST 'http://127.0.0.1:18000/api/v1/jt808/8302' \
--header 'Content-Type: application/json' \
--data-raw '{
    "key": "14419999999",
    "command": 33538,
    "data": {
        "flag": 255,
        "questionContentLen": 3,
        "questionContent": "123",
        "answerList": [
            {
                "answerID": 1,
                "answerContentLen": 2,
                "answerContent": "AA"
            },
            {
                "answerID": 2,
                "answerContentLen": 1,
                "answerContent": "B"
            }
        ]
    }
}'

返回响应

🟢200成功
application/json
Body

示例
{
    "code": 200,
    "msg": "success",
    "data": {
        "errDescribe": "",
        "command": 33538,
        "replyCommand": 1,
        "details": {
            "serialNumber": 19,
            "id": 33538,
            "result": 0
        },
        "terminalMessage": "7e00010005001256256927084f0013830200fe7e",
        "platformMessage": "7e8302000e0012562569270013ff033132330100024141020001423d7e",
        "remark": "平台-提问下发 -> 终端-通用应答"
    }
}
修改于 2025-01-30 09:23:55
上一页
0x8300-文本信息下发
下一页
0x8801-摄像机立即拍照
Built with