You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Here there is server object at path level with server variables. When we import this file in postman tool then the request url for '/pets' path is not generated correctly. The request looks like below:
Three issues in above request
The '/pets' path part is missing
In the path variables only 'basePath' is added. I think 'port' variable should also be added.
collection variable replacement is not happening when we run the collection. The request URL for the 1st request (after running the collection) is as below: http://petstore.swagger.io::port/{{basePath}}?limit=
The collection does has all the variables:
The text was updated successfully, but these errors were encountered:
Here is the new behavior:
The {{petsUrl}} was created but wasn't respected. Now it will be used instead of the http://petstore.swagger.io::port/{{basePath}}?limit=
@ganeshnikam18
Hope this solves your usecase. Feel free to open this issue again if you have more inputs/concerns :)
Here there is server object at path level with server variables. When we import this file in postman tool then the request url for '/pets' path is not generated correctly. The request looks like below:
Three issues in above request
http://petstore.swagger.io::port/{{basePath}}?limit=
The collection does has all the variables:
The text was updated successfully, but these errors were encountered: