Questions tagged «postman»

Postman是API开发人员共享,测试,记录和监视API的工具链。

30
在子域中使用邮递员时出现“无法获得任何响应”响应
我正在使用邮递员来测试我拥有的API,当请求不包含子域时一切都很好,但是当我向URL添加子域时,我会收到此响应。 无法得到任何回应 连接到http://subdomain.localhost:port / api /时出错 为什么会发生这种情况: 服务器无法发送响应:确保后端正常运行 自签名SSL证书被阻止:通过在“设置”>“常规”中关闭“ SSL证书验证”来解决此问题 代理配置不正确确保在“设置”>“代理”中正确配置了代理 请求超时:在“设置”>“常规”中更改请求超时 如果我从邮递员复制相同的URL并将其粘贴到浏览器中,则会得到正确的响应,是否应该进行某种配置以使邮递员与子域一起使用?
223 subdomain  postman 



13
如何使用Guzzle以JSON发送POST请求?
有人知道post使用JSON 的正确方法Guzzle吗? $request = $this->client->post(self::URL_REGISTER,array( 'content-type' => 'application/json' ),array(json_encode($_POST))); 我internal server error从服务器收到响应。它可以使用Chrome浏览器Postman。
180 php  postman  guzzle 

12
使用Postman在标头中发送JWT令牌
我正在根据以下文章测试基于JWT令牌的安全性的实现。我已成功从测试服务器收到令牌。我不知道如何让Chrome POSTMAN REST Client程序在标头中发送令牌。 我的问题如下: 1)我使用正确的标题名称和/或POSTMAN接口吗? 2)我是否需要基于64位编码令牌?我以为我可以将令牌寄回去。
169 express  jwt  postman 


13
邮递员:发送嵌套的JSON对象
我正在使用ASP.NET Web API:http : //xyzdomain.com : 16845/ api/ returns/returns 给定Items一个集合,我如何使用Postman Chrome扩展程序向端点发送POST请求: [ { "Items": [ { "sku": "9257", "Price": "100", "Quantity": "500", "DiscountPercent": "1", "backordered": "2" } ], "order_id": "F429768865001", "status_code": "Shelf", "Exception": "no error" } ]

6
在PostMan中模拟特定的CURL
我正在使用Postman测试对API服务器的一些Curl请求。API开发人员给了我们curl命令,但是我不能从邮递员发送它。如何向邮递员提出这样的要求? curl -X POST "https://api-server.com/API/index.php/member/signin" -d "{"description":"","phone":"","lastname":"","app_version":"2.6.2","firstname":"","password":"my_pass","city":"","apikey":"213","lang":"fr","platform":"1","email":"email@example.com","pseudo":"example"}" --0xKhTmLbOuNdArY Content-Disposition: form-data; name="userfile"; filename="profil.jpg" Content-Type: image/jpeg Content-Transfer-Encoding: binary <ffd8ffe0 00104a46 49460001 01010048 ... a00fffd9> —0xKhTmLbOuNdArY—

1
将POSTMAN请求转换为Curl
我以下列方式通过POSTMAN调用我的Java Web服务(POST请求),它工作得很好(即,我可以看到记录插入到数据库中了): 而且,这是Headers(1)选项卡内内容的样子: 而不是通过POSTMAN调用它,我必须使用CURL在PHP中调用相同的请求。我想知道是否有一种方法可以将此命令导出为curl命令,以便可以在PHP代码中使用它?我在网上的许多地方发现了相反的方法,那里有人要求将基于Curl的请求转换为POSTMAN,但无法弄清楚该如何做。 我发现一些关于邮递员卷曲的文章
141 php  curl  postman 

16
如何在Postman中上传文件和JSON数据?
我正在使用Spring MVC,这是我的方法: /** * Upload single file using Spring Controller. */ @RequestMapping(value = "/uploadFile", method = RequestMethod.POST) public @ResponseBody ResponseEntity<GenericResponseVO<? extends IServiceVO>> uploadFileHandler( @RequestParam("name") String name, @RequestParam("file") MultipartFile file, HttpServletRequest request, HttpServletResponse response) { if (!file.isEmpty()) { try { byte[] bytes = file.getBytes(); // Creating the directory to store file …
134 java  json  spring-mvc  postman 


10
Websocket与邮递员的连接
我正在使用Postman测试现有的REST API。此API调用服务器上的异步函数,这些函数使用StompJS通过WebSocket返回响应。 是否可以使用Postman连接到网络套接字?
124 postman 

5
如何将Swagger API导入Postman?
最近,我用SpringMvc和swagger-ui(v2)编写了宁静的API 。我注意到邮递员中的导入功能: 所以我的问题是如何创建Postman需要的文件? 我不熟悉Swagger。
113 swagger  postman 

12
如何在邮递员中删除会话cookie?
我正在Postman中测试我的API,并且无法模拟注销。 如果我打电话删除会话cookie, 那么会话cookie 仍然存在,并且我仍然能够访问需要身份验证的路由。 服务器上的路由处理程序为: server.route({ method: 'DELETE', path: '/sessions/_current', handler: function(req, reply){ req.auth.session.clear(); reply({}).code(204); } }); 这是带有Hapi的Node.js,但这无关紧要。 有没有一种方法可以手动删除 Postman中的所有cookie或某些cookie?
108 postman 

5
使用邮递员通过原始json发送POST数据
我有Postman(在Chrome中无法打开的邮递员),并且我正在尝试使用原始json发出POST请求。 在“正文”选项卡中,我选择了“原始”,并使用该正文“ JSON(application / json)”: { "foo": "bar" } 对于标题,我有1 Content-Type: application/json 在PHP方面,我现在正在做print_r($_POST);,并且得到一个空数组。 如果我使用jQuery并执行以下操作: $.ajax({ "type": "POST", "url": "/rest/index.php", "data": { "foo": "bar" } }).done(function (d) { console.log(d); }); 我得到预期的结果: Array ( [foo] => bar ) 那为什么不与Postman合作呢? 邮递员截图: 和标题:
107 php  json  rest  postman 

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.