postman Questions

11

Solved

I am trying to test my REST API through postman and I am getting the following error: This is my first REST API that I have written and I am very new to postman so not sure what am I doing wrong. ...
Ottoottoman asked 22/3, 2020 at 1:20

6

Solved

I have a simple web api project, which looks like this: [Authorize] [Route("Get")] public ActionResult<string> SayHello() { return "Hello World"; } I am trying to test it with Postman...
Persuasive asked 19/2, 2020 at 17:35

4

Solved

I'm trying to make SOAP request with xml using postman, but some of the parameters I want to send must be environment variables I have already stored in other request. The request Body is somethi...
Jeramie asked 14/5, 2018 at 15:17

4

Solved

I know from the Postman docs that I can open saved requests in a new tab either by creating a new tab before clicking on the saved request or with a keyboard shortcut, but I'm hoping there's a way ...
Evangelista asked 7/10, 2016 at 9:7

9

Solved

I want to automatically add a header to every request in my whole collection using this pre-request script: pm.request.headers.add({ 'key': "myvar", 'value': pm.environment.get("myvar") }); m...
Chirp asked 2/7, 2018 at 8:12

4

I am trying to fetch a html page which is placed in Azure blob storage using postman. The default blob storage access has been set to private, so i have to send "Shared Key", "x-ms-version" and "x-...
Endres asked 19/12, 2018 at 16:8

5

Solved

My problem is as follows: When i create POST request in "Postman" app. This is what i try to POST {"name": "John Doe", "email":"[email protected]", "city": "London"} I am getting the foll...
Stride asked 19/11, 2018 at 20:28

4

Solved

I'm trying to send elasticserach multi search request via postman as below: POST - http://localhost:9200/_msearch content-type : x-www-form-urlencoded body: {"index":"accounts"} {"query":{"bool":{...
Besotted asked 1/8, 2017 at 11:59

6

I have created a collection in Postman to have a bunch of API endpoints. I can add team members to my Postman workspace and share documentation links publicly online. I was looking for a download l...
Secrecy asked 12/7, 2019 at 12:9

14

Solved

I'm testing an implementation of JWT Token based security based off the following article. I have successfully received a token from the test server. I can't figure out how to have the Chrome POSTM...
Slemmer asked 12/7, 2014 at 5:26

15

Solved

When I do a POST request on localhost:8080/api/users to create a new user I get the following error : { "timestamp": "2018-05-28T09:44:55.704+0000", "status": 415, ...
Spangler asked 28/5, 2018 at 9:52

7

Solved

I have configured a form-base authentication using Spring security. It works fine when I log in using the login form in my web application. It also works with cURL: curl --data "j_username=myname...
Anisometropia asked 28/5, 2015 at 9:46

23

Solved

I am in a corporate env so I have to use a proxy to reach servers. This works well in postman and in browsers. What I can't reach is localhost in postman but I can reach localhost in the browser. ...
Gloaming asked 6/3, 2018 at 12:12

18

Solved

This is probably something very basic, but I am having trouble figuring out where I am going wrong. I am trying to grab a string from the body of a POST, but "jsonString" only shows as null. I al...

6

Solved

I'm trying to access an API using Postman to get a response using basic authentication, but when I submit the data, it gives me the dreaded 400 error, which apparently indicates that some headers a...
Murmurous asked 28/1, 2018 at 17:28

13

Solved

I am using Postman to test some Curl requests to an API server. The API developers gave us the curl command, but I can't send it from the Postman. How to make such a request from the Postman? curl...
Bootblack asked 15/1, 2015 at 6:34

3

I'm testing CORS with the Postman tool and I constantly get access-control-allow-origin → null for GET or OPTIONS requests to http://localhost:4000/api/accounts?Host=http://localhost:4200/&...
Seigniorage asked 29/6, 2016 at 15:4

4

Solved

In the left panel shows the History tab, which I can view previous requests I've made. When I click any of the previous requests, it displays the URL and key-values used, but doesn't show the respo...
Diabolic asked 12/2, 2017 at 5:52

1

Solved

I would like to publish a message to an IoT thing topic on AWS using HTTPS and Postman. EDIT: I have edited majority of the post to include a step-by-step process of the thing i created I created a...
Leeway asked 5/12, 2023 at 16:2

6

I follow the Laravel official document step by step. When I send a request to {{host}}/api/login, I can receive the response that includes the token. Everything is correct. But when I try to send a...
Maciemaciel asked 3/5, 2021 at 6:20

2

Solved

{ "name": "IronMan", "phone_number": "555555555", "number_of_guest": 10, "tables": [ 2 ], "reservation_start_at": "2020-10-15T10:00:00.861873Z", "reservation_end": "2020-10-15T11:00:00....
Persuasive asked 12/10, 2020 at 4:53

3

I have a REST api that takes data of nested json including multipart file While testing the REST api through postman I am having problems. I don't exactly know how to send the diverse types of data...
Balalaika asked 21/8, 2021 at 10:16

3

I have read these documents: https://cloud.google.com/docs/authentication/getting-started?hl=ru#auth-cloud-implicit-java https://cloud.google.com/storage/docs/reference/libraries?hl=ru https://c...

6

Solved

This subject has been asked a couple of time, but I still don't understand something: When I read answers about No 'Access-Control-Allow-Origin' header issue, it says a setting should be set...
Thessalonian asked 27/3, 2016 at 17:51

14

Solved

I'm trying to use Postman to send a single Push Notification using Firebase Cloud Messaging service. This is a working cURL command for the same purposal, on which I'm using as a reference. curl ...
Ingenue asked 8/8, 2016 at 16:14

© 2022 - 2024 — McMap. All rights reserved.