Use this tag to refer to questions about the native desktop application version of postman on your local machine, i.e. not the web version of postman (https://postman.com).
Questions tagged [postman-native-app]
44 questions
1
vote
0 answers
Postman stuck on sending request whenever trying a to send a GET request to an API hosted locally
I am trying to test an API hosted on a local IIS server on my pc using postman, however it gets stuck on sending request . Then after a long period of time of sending request trial, it fails and says Could not get response. When checking log it…

Bruke Abebe
- 11
- 1
1
vote
0 answers
How do I add restricted headers like Expect:100-continue in postman using interceptor
I am trying to add restricted header(expect-100-continue) to postman post request since I have a huge payload. I did some research and found out that postman ignores restricted headers like(expect) even if you add it to header section.
So I…

coder
- 53
- 1
- 8
1
vote
2 answers
Spring Security Authorize request from native Postman app
I am exploring/learning Spring security modules by implementing it through REST API.
To test the impact, we are using Postman native application as a rest client.
@RestController
@RequestMapping("/auth")
public class Employee {
…

Ashish Parab
- 174
- 2
- 19
1
vote
1 answer
Postman and content-length
From my laptop I initiated a POST request to my web server. The HTTP POST request looks something like this (when seen via POSTMAN console)
POST /api/fwupgrade HTTP/1.1
User-Agent: PostmanRuntime/7.24.1
Accept: */*
Cache-Control:…

Embedded Enthusiast
- 47
- 1
- 1
- 9
1
vote
1 answer
Pm.cookies.jar could not find cookies with secure=true
I have a list of cookies in my response that has secure=true which is not accessible by the pm.cookies.jar()
This results in an issue where i wanted to clear all the cookies under a domain, which does not happen with the below code on the secure…

Jeeva
- 438
- 4
- 12
1
vote
1 answer
How run Postman in Google Chrome
Looks like Postman extension is not supported on Chrome anymore.
I tried to run it by clicking on the icon in chrome://extensions/ page.
I searched in net and found this article
I removed the Postman extension and downloaded…

Petro Gromovo
- 1,755
- 5
- 33
- 91
1
vote
1 answer
How to add a POST request in an existing collection?
I am trying to add POST request to an existing collection, Here by default only get request available. How can i change that?

hari prasanth
- 716
- 1
- 15
- 35
1
vote
1 answer
How do I use Postman to create oAuth nonce, timestamp & signature?
I am looking at the Account Activity API and can see that I need to create a signature
https://developer.twitter.com/en/docs/basics/authentication/guides/creating-a-signature.html
This basically consists of the oauth_nonce ,oauth_timestamp & the…

Zabs
- 13,852
- 45
- 173
- 297
0
votes
0 answers
Sending an API call from webapp via local machin
I am wondering if there is a way I can send an api request from an app I am building through the local machine.
I have to make a call on the vpn, and when I make it from my browser, the call gets blocked. However, when I make the call from postman…
0
votes
1 answer
Save custom response in json file in postman
In postman, I am getting response from 3rd party API and the response contains unnecessary data.
I want to get few keys from the resposne and save in json file when I click on SAVE RESPONSE button inside postman.
"goods": {
"193651": {
…

Cyberian
- 11
- 5
0
votes
0 answers
postman is uploading file as 'unknown' and not including any data
I'm trying to upload a file using postman.
I'm sending it via the formBody option on the server side.
If I look at the Postman Console, I get this:
I have set the key to 'file' and the value (after selecting the type as 'file' from the drop down)…

Traderhut Games
- 1,222
- 1
- 15
- 30
0
votes
0 answers
How to Read the Payload from Browser-Network tab and use it in postman as Header in another request
In my 1st Request- i am getting Re-direction url in Response.
Once provide the Redirection url in Chrome browser, User will get Payload in Network tab.
Same Payload value need to provide in Another postman request in Param section.
So same request…

prem
- 81
- 1
- 3
- 12
0
votes
0 answers
Postman training query in test collection
I have been doing the postman training. So, how to solve this error?
I tried solving the error by checking each variable, query or something but nothing works.
0
votes
1 answer
How can we access dynamic variable {{$guid}} inside pre request in postman?
I can access guid in url or body like {{$guid}} but same doesn't work inside pre-request script.

shyam yadav
- 214
- 1
- 10
0
votes
0 answers
Converting timestamps in postman within a template?
I'm using an html template within the Tests tab to output my json data, however, some of the data is in timestamp form. Is there a way to do the calculation to a more standard date/time format from within the var template ? I've read several ways…