Thank you. As soon as Postman asked for a login I uninstalled it and have been curling from text files ever since. My younger coworkers won't drop Postman though. Maybe this will help them switch.
Can't echo this enough. Thank you! Beyond just the login reqs from Postman, the whole Postman UI has become an overcomplicated mess in my opinion. I just want something simple to make remote HTTP calls. I can understand adding some useful extra things like variable interpolation and separate environments, but beyond that, Postman went way off the "enterprisey" deep end.
Bruno: Fast and Git-friendly open-source API client (Postman alternative)
131–140 of 444 posts
Re: Bruno: Fast and Git-friendly open-source API client (Postman alternative)
#132Earlier quoted context omitted.
If you use VS Code REST Client is awesome https://github.com/Huachao/vscode-restclient
If you use IntelliJ based products, the builtin HTTP Client is awesome. https://www.jetbrains.com/help/idea/http-client-in-product-c...
Re: Bruno: Fast and Git-friendly open-source API client (Postman alternative)
#133Re: Bruno: Fast and Git-friendly open-source API client (Postman alternative)
#134What, if anything, differentiates an "API client" from an "HTTP client" (HTTP client includes TCP client) What is required to be considered an "API client" Perhaps "API client" is "HTTP client" + "JSON parser" Could "JSON parser" be a separate program
Re: Bruno: Fast and Git-friendly open-source API client (Postman alternative)
#135There are a few minor features I miss (being able to bulk edit headers is the main one), but overall I highly recommend it.
Re: Bruno: Fast and Git-friendly open-source API client (Postman alternative)
#136But if we want a Git-friendly text format, why not mimic HTTP/1.1 request syntax as much as possible? Maybe with Jekyll-like YAML front matter for metadata that doesn’t fit?
So for Get Users.bru instead of the current example of:
meta {
name: Get Users
type: http
seq: 1
}
get {
url: https://reqres.in/api/users
body: none
}
headers {
Content-Type: application/json
}
We could adopt a format like: ---
name: Get Users
type: http
scheme: https
seq: 1
---
GET /api/users HTTP/1.1
Host: reqres.in
Content-Type: application/jsonRe: Bruno: Fast and Git-friendly open-source API client (Postman alternative)
#137Re: Bruno: Fast and Git-friendly open-source API client (Postman alternative)
#138Earlier quoted context omitted.
I know people don't love VS Code, but is there a reason Thunder Client isn't more popular? I know it's feature lacking compared to postman, but more so than curling?
Team options are behind the paywall. Besides, bruno is simply better.
Re: Bruno: Fast and Git-friendly open-source API client (Postman alternative)
#139Earlier quoted context omitted.
If you use IntelliJ based products, the builtin HTTP Client is awesome. https://www.jetbrains.com/help/idea/http-client-in-product-c...
If you use computers, Curl is awesome. https://curl.se/
Re: Bruno: Fast and Git-friendly open-source API client (Postman alternative)
#140I really like IDEA's .http files [1] Very similar idea as Bruno: everything is configured in text, which I always find myself more productive in that full blown GUI where I need to tab from edit text to edit text to get anything don. [1] https://www.jetbrains.com/help/idea/http-client-in-product-c...