用ApiPost发送JSON格式的POST请求示例

ApiPost是一个很好的http模拟器,在测试rest服务时是很好用的工具,可以发送get、post、put等各种请求。相对来说,比老外的postman好用多了。

在地址栏里输入请求url:[http://echo.apipost.cn/get.php](http://echo.apipost.cn/get.php)

选择“POST”方式,

点击"body",并选择请求方式为 application/json

用ApiPost发送JSON格式的POST请求示例

添加:

{
    "userid": 1
}

点击send发送即可。

你可能感兴趣的:(数据库,模拟器,测试工具)