服务地址和鉴权

服务地址

  1. 测试环境:http://222.92.194.131:8094
  2. 生产环境:http://222.92.194.131:8095

鉴权

在所有的请求header中添加token参数
注意:不同环境的token联系海典人员单独提供

示例

  1. HttpResponse execute = HttpUtil.createPost(url)
  2. .header("token", "123456789")
  3. .body(body)
  4. .execute();