subasraj / flashpost-support

Flashpost is a lightweight Rest API Client Extension for Visual Studio Code.
MIT License
10 stars 0 forks source link

URL parameters are not supported #3

Closed tsekki closed 10 months ago

tsekki commented 10 months ago

Coming from ThunderClient, my queries do not work out-of-the-box after the import.

Example:

GET localhost:3000/users/{id}

I expect that {id} in URL parameter would be added as parameter as query params are added so I can dynamically make queries with same URL.

Either URL parameters are not yet supported or plugin is using different placeholder format.

ps. thanks for this drop-in replacement!

subasraj commented 10 months ago

Hi Variable substitutions work for {{variable}} like in Postman. Please try GET localhost:3000/users/{{id}}