http内置接口

  • ##推送消息接口

系统内置了io.github.quickmsg.core.http.PublishActor接口,用于推送mqtt消息。使用方式如下:

  • 请求url /smqtt/publish
  • 请求方式 POST
  • 请求Body
参数 说明 必传
topic topiuc
qos 服务等级
retain 保留消息
message 消息
  • 返回body 空
  • 返回状态码 200 成功
curl -H "Content-Type: application/json" -X POST -d '{"topic": "test/teus", "qos":2, "retain":true, "message":"我来测试保留消息3" }' "http://localhost:1999/smqtt/publish"
1
  • # 其他接口暂未公开

Last Updated: 12/5/2021, 8:33:06 AM