Questions tagged [postman]

Postman is a client for sending and emulating requests over HTTP. It is most commonly used with API requests. Use for questions about the tool itself. Use with any relevant API tags if you are having issues with a specific use.

Started out as a simple testing tool, Postman is now an elegant, flexible tool used to build connected software via APIs - quickly, easily, and accurately. It is used by nearly five million developers and more than 100,000 companies worldwide.

Postman enables you to:

  • Create Collections of requests
  • Organize your work within different Workspaces
  • Split-stack development with Mock Servers
  • Use Tests & Scripts to add dynamic parameters
  • Automate tests with Collection Runner
  • Test performance & behavior with Monitors
  • Document & Publish Collections for collaboration
12313 questions
3
votes
1 answer

Tips on organizing postman collections?

We are scaling up to a large micro services build with even more tests to be done via postman (field validations, error tests, etc.) Curious... How does your team organize your collections of tons of APIs? (by API, by test type, by release, etc) as…
Jim Lee
  • 31
  • 1
3
votes
3 answers

PHP cURL request return 401, but works with Postman

If I execute the Webservice call with Postman with these parameters: Content-Type: application/json Cookie: xxxx Body: json The Webservice return successfully a JSON. So, I generated the code with the Postman and paste it on PHP:
Lücks
  • 3,806
  • 2
  • 40
  • 54
3
votes
1 answer

Woocommerce rest api invalid signature (error 401) on post request

I am working on an Ionic 2 project for a woocommerce store. I am using Woocommerce REST API in my app and for testing the API with OAuth-1.0 using Postman Chrome App. I am getting proper responses with GET requests but for POST requests, I am…
rmalviya
  • 1,847
  • 12
  • 39
3
votes
0 answers

What is the difference between a postman request and a request from heroku or localhost

I can make a request from postman but when I make the same exact request (I'm talking about even copying the code from postman) I get an error. Response to preflight request doesn't pass access control check: No 'Access-Control-Allow-Origin' header…
Chris
  • 391
  • 4
  • 14
3
votes
1 answer

Django/Django Rest Framework - Disable CSRF

Im looking for a simple way to disable all the CSRF validation to can test my API in Postman. Till now I have tried add @decorator csrf_exempt without success. I also tried create a disable.py file inside the app, but didn't work also. Also I want…
62009030
  • 347
  • 1
  • 5
  • 20
3
votes
0 answers

Send file with Postman to FosRestBundle Symfony

Im trying to upload file to a Symfony app, then retrieve the file from the ParamFetcher of FosRestBundle, finally create a SonataMedia object with the uploaded file. Im stuck on how to upload the file. The entire application has been developed using…
3
votes
1 answer

Postman 4.9.3 - No Interceptor Switch

I am following along a brilliant Pluralsight tutorial, building my first ASP.Net MVC site. I want to login to my website, creating a cookie in my Chrome browser, and use Postman to send some requests which should be handled by my controller because…
TDC
  • 1,869
  • 3
  • 25
  • 40
3
votes
2 answers

Laravel 5.3 api routes are redirecting even when all middleware is commented out

I am writing a RESTful API with a new Laravel 5.3 app. I have a resource defined in routes/api.php like so: Route::resource('/simple-path', 'Api\ControllerName'); There is no middleware added on the route itself, nor is there any added in the…
fronzee
  • 1,668
  • 2
  • 21
  • 32
3
votes
3 answers

I am testing Firebase notification in Postman but not get the response

I am new to Firebase. Now I tried to test the notification in postman but If I test it in the Firebase console, I can able to get the notification. I used the correct sender ID and API key from the Firebase console. Please advice me for this…
CarinaMj
  • 187
  • 2
  • 14
3
votes
2 answers

Can I search where I have set a global or environment variable in postman?

I have many collections with 10+ requests in them and have set many global and environment variables in all these requests. Now, if I don't remember where I have set a specific variable and in what requests I am reading this variable's value, I have…
3
votes
1 answer

Send entries for FieldList of StringField from postman to flask

I'm trying to test a form created using wtform in flask using postman. In the form I have a FieldList of StringFields and I have specified minumum entries = 2. I have tried different solutions to test validations from postman, but always validation…
Ameya Kulkarni
  • 198
  • 1
  • 2
  • 14
3
votes
1 answer

FedEx Shipping API using PHP

I am trying to Integrating fedex api using php but there are some errors .i am using following code:
shalini
  • 39
  • 1
  • 7
3
votes
1 answer

flask returns 400 on post request from postman

I'm doing a flask course on lynda and had trouble with an example. https://www.lynda.com/Flask-tutorials/Web-API-Development-Flask/521200-2.html I'm doing a simple post and it works when from a basic webform but fails from postman. I think it's…
sshevlyagin
  • 1,310
  • 2
  • 16
  • 26
3
votes
1 answer

'bind message supplies 1 parameters, but prepared statement "" requires 5' in Node

I am having trouble trying to figure out why my POST is not working using Nodejs and Massivejs. I am trying to add a test product using Postman and it's giving me the "bind message supplies 1 parameters, but prepared statement "" requires 5" error.…
Keith
  • 770
  • 1
  • 6
  • 17
3
votes
1 answer

Retrofit 500 Internal Server Error, Postman working

I know there must've been 1000 posts like this one, but I searched for the mistake everywhere and could not find it, so i hope you guys can take a look and tell me if you notice something i am missing. Token class public class Token { public static…
Rand3794
  • 33
  • 1
  • 6
1 2 3
99
100