 
    
    请求方式:POST
URL: http://api.heclouds.com/mqtt
| 参数名称 | 格式 | 是否必须 | 说明 | 
|---|---|---|---|
| topic | string | 是 | 发布消息到指定的topic,只支持发布qos=0的消息 | 
普通二进制数据、字符串、json等(**最大支持64k**)
| 参数名称 | 格式 | 说明 | 
|---|---|---|
| errno | int | 调用错误码,为0表示调用成功 | 
| error | string | 错误描述,为"succ"表示调用成功 | 
POST http://api.heclouds.com/mqtt?topic=topic/test/01 HTTP/1.1
{"payload":"testmsg"}
{
    "errno":0,
    "error":"succ"
}