Postman与IDEA两种方式测试接口UR

1.第一种方式使用postman

        简单使用直观,功能性强(如果请求发送失败,请确定请求头是post还是get,并且参数是否完整,headers中是否需要填入cookie)Postman与IDEA两种方式测试接口UR_第1张图片

2.第二种方式使用IDEA发出请求测试

        新建个API文件

Postman与IDEA两种方式测试接口UR_第2张图片

        如果是POST请求需要添加,Content-type,有些请求可能还需要添加cookie和参数值等···

        如果是Get请求就填好Get请求头和链接内容冲就完事了

# For a quick start check out our HTTP Requests collection (Tools|HTTP Client|Open HTTP Requests Collection).
#
# Following HTTP Request Live Templates are available:
# * 'gtrp' and 'gtr' create a GET request with or without query parameters;
# * 'ptr' and 'ptrp' create a POST request with a simple or parameter-like body;
# * 'mptr' and 'fptr' create a POST request to submit a form with a text or file field (multipart/form-data);
POST  http://localhost:88/api/workflow/requestAttention/getAttentionTypeSet?src=getData2&requestid=-1
Content-Type: application/json
Cookie: ecology_JSessionid=aaaMXTNx1NNxF6MNzyNMx; languageidweaver=7; JSESSIONID=aaaMXTNx1NNxF6MNzyNMx; loginidweaver=1; loginuuids=1; __randcode__=3b27ab19-d273-4392-bbaf-5ef434d37047

{
  "requestid": -1
}

###

 

你可能感兴趣的:(api,安全,intellij,idea,postman,接口)