美文网首页
postdata数据发送

postdata数据发送

作者: Lseafood | 来源:发表于2019-01-09 17:18 被阅读0次

    数据发送:机构给出接口,我们主动调用,POST请求表单提交数据。

    位置数据发送

    • 地址: http://xxxxx/

    • 方法: post

    • 参数规范

      名称 必须 类型 说明
      imei String 15位设备唯一序号
      time_begin String 发生时间YYYY-MM-DD HH:mm:SS.xxxxxx
      is_reply Boolean 是否为响应
      is_track Boolean 是否轨迹
      city String 城市
      address String 地址
      lon double 经度
      lat double 纬度
      type String 类型 0:Gps定位; 1:基站定位

    SOS数据发送

    • 地址: http://xxxxx/

    • 方法: post

    • 参数规范

      名称 必须 类型 说明
      imei String 15位设备唯一序号
      time_begin String 发生时间YYYY-MM-DD HH:mm:SS.xxxxxx
      heartrate Int 心率
      city String 城市
      address String 地址
      lon double 经度
      lat double 纬度
      type String 类型 0:Gps定位; 1:基站定位

    心率数据发送

    • 地址: http://xxxxx/

    • 方法: post

    • 参数规范

      名称 必须 类型 说明
      imei String 15位设备唯一序号
      time_begin String 发生时间YYYY-MM-DD HH:mm:SS.xxxxxx
      heartrate Int 心率
      theshold_heartrate_h Int 心率阈值上限
      theshold_heartrate_l Int 心率阈值下限

    计步数据发送

    • 地址: http://xxxxx/

    • 方法: post

    • 参数规范

      名称 必须 类型 说明
      imei String 15位设备唯一序号
      time_begin String 发生时间YYYY-MM-DD HH:mm:SS.xxxxxx
      value Int 步数

    睡眠数据发送

    • 地址: http://xxxxx/

    • 方法: post

    • 参数规范

      名称 必须 类型 说明
      imei String 15位设备唯一序号
      time_begin String 发生时间YYYY-MM-DD HH:mm:SS.xxxxxx
      time_end String 结束时间YYYY-MM-DD HH:mm:SS.xxxxxx
      interval Int 固定30分钟
      total Int 检测次数
      data Sting 样例截取 睡眠数据 (格式:state,turn_over state,turn_over ...)

    注:data 为字符串,格式为: state,turn_over|state,turn_over|state, ... state和turn_over的含义见object.md 文档中sleepdatasleep

    开关机数据发送

    • 地址: http://xxxxx/

    • 方法: post

    • 参数规范

      名称 必须 类型 说明
      imei String 15位设备唯一序号
      time_begin String 发生时间YYYY-MM-DD HH:mm:SS.xxxxxx
      type String 开/关机类型 0:开机; 1:关机; 2:电量上报; 3:低电通知
      remaining_power Int 剩余电量(%)

    血压数据发送

    • 地址: http://xxxxx/
    • 方法: post
    • 参数规范
      | 名称 | 必须 | 类型 | 说明 |
      | --------------- | ---- | ------------ | ------------------------------ |
      | imei | 是 | String | 15位设备唯一序号 |
      | time_begin | 是 | DateTime | 发生时间YYYY-MM-DD HH:mm:SS.xxxxxx|
      | dbp | 是 | int | 舒张压 |
      | dbp_l | 是 | int | 舒张压报警下限 |
      | sbp | 是 | int | 收缩压|
      | sbp_h | 是 | int | 收缩压报警上限 |

    跌倒数据发送

    • 地址: http://xxxxx/

    • 方法: post

    • 参数规范

      名称 必须 类型 说明
      imei String 15位设备唯一序号
      time_begin String 发生时间YYYY-MM-DD HH:mm:SS.xxxxxx
      city String 城市
      address String 地址
      lon double 经度
      lat double 纬度
      type String 类型 0:Gps定位; 1:基站定位

    消息通知

    • 地址: http://xxxxx/

    • 方法: get

    • 参数规范

      名称 必须 类型 说明
      type int type=1 SOS,type=2 fall,type=3 new 新成员加入 ,type=4 电子围栏触发, type=5 设备低电,type=6 环境音 '''
      deviceid String 15位设备唯一序号
      communityid String 机构ID
      url String 环境音下载地址
      name String 设备名称

    根据type来定义给用户推送提示 type=1 SOS,type=2 fall,type=3 new 新成员加入 ,type=4 电子围栏触发, type=5 设备低电,type=6 环境音'''

    相关文章

      网友评论

          本文标题:postdata数据发送

          本文链接:https://www.haomeiwen.com/subject/vpvgrqtx.html