在角项目中与邮递员的api测试

时间:2017-04-03 06:10:09

标签: postman

我想测试我的api for resister,它的帖子类型包含用户名,电子邮件,密码,电话号码。我真的不知道如何在邮递员中测试api。它应该是no-auth的授权类型。在此之后,我必须验证或测试api登录然后它生成一些密钥然后我必须使用此密钥来测试其他api的。

2 个答案:

答案 0 :(得分:0)

i believe to test post api withpostman
first you need to put the route of your api and the type of http in your case POST
then go to header tab and add this header(under key/value):-
Content-Type :application/json
then under body tab select row option and insert valid json as below
{
    "username": "Omar Shabro",
    "email": "o4@o.com",
    "phone": "0599"

}

答案 1 :(得分:0)

首先要确定在这种情况下是否使用任何形式的auth,您需要在发送请求之前处理auth。检查以下链接,它将在auth的情况下帮助您

https://www.getpostman.com/docs/helpers