• REST接口描述
    • 通用请求头
    • 通用响应头

    REST接口描述

    协调节点(coord)和数据节点(data)对外提供REST接口访问,同时支持HTTP和HTTPS协议。

    通用请求头

    字段说明例子
    Content-Type请求的数据类型application/x-www-form-urlencoded;charset=UTF-8
    Content-Length请求的长度54
    Host主机名(协调节点或数据节点的服务地址)192.168.1.214:11814
    Accept希望应答的数据类型,如果不指定该字段,默认响应 text/html (文本格式)的数据类型application/json
    1. POST / HTTP/1.0
    2. Content-Type: application/x-www-form-urlencoded;charset=UTF-8
    3. Accept: application/json
    4. Content-Length: 54
    5. Host: 192.168.1.214:11814

    通用响应头

    字段说明例子
    Content-Type响应内容的类型,如果请求 Accept 为 application/json,应答 Content-Type 为 application/json,否则应答 Content-Type 为 text/htmlapplication/json
    Content-Length响应内容的长度35
    1. HTTP/1.1 200 Ok
    2. Content-Length: 35
    3. Content-Type: application/json