5 ms·
Postman works great. The only feature I would like to see added is to somehow easilu swap a base URL in requests. So I have to maintain just one collection per
by lilpirate 12y ago
Postman works great. The only feature I would like to see added is to somehow easilu swap a base URL in requests. So I have to maintain just one collection per API and not multiple collections for multiple API deployments (production, testing, staging).
- sqren 12y agoYou can do that with environments: http://www.getpostman.com/docs/environments http://www.getpostman.com/docs/environments
- redwoolf 12y agoYou can do this by using the environments feature. Create an environment and add a key to that environment to represent the base URL. Then in the the URL line replace your base URL with the reference to the key. For example http://{{base-url}}/api/ http://{{base-url}}/api/
- lilpirate 12y agoAha. I thought environments could only be used for setting additional HTTP headers! Thanks for this.