Postman teams plan no longer free.
- 4 months
Yeah he doesn’t.
… But he still should, if he knows what’s best for him
- expr@piefed.socialEnglish4 months
I really should link people to this site more often. The author is 100% correct.
- 4 months
Fucking Gopher?
sad golang noises
(I know that Gopher and the protocol are not related)
- 4 months
Can it be done in Bruno? Postman went to shit in the last few years with cloud/AI integrations.
- one_old_coder@piefed.socialEnglish4 months
Didnt Bruno lied and added a subscription too?
I use Posting, great TUI.
- bananabread@lemmy.zipEnglish4 months
Bruno projects can be used with git easliy without leaking your credentials :)
- 4 months
Yeah it’s not fully open source. Sadly there are paid features now.
- 4 months
yes it can. you can use voiden.md as well - also open source, plain text, markdown all the way and also keeps collaboration in git.
- 4 months
I dislike postman. I see job postings that are like “MUST KNOW POSTMAN”. Fuck, people should know how to make API requests but postman isn’t the only tool for that.
Furthermore, if I’m doing automated tests to run on PR I’m not going to use a GUI. Pytest or jest or whatever testing library your language has.
I did use Bruno for a while for convenience during local development, though.
I saw a job posting the other day that had a hard requirement of 7+ years of experience with a specific IDE. It was phrased as an absolute must have.
That’s how you know an organization is totally clueless. TBF, not all IDE’s are created equal but it would be kind of like a construction foreman refusing to hire a anyone who didn’t have 7+ years of experience with DeWalt power tools.
- 4 months
MFW I go to recommend Insomnia instead, then realize that it’s apparently enshittified with “create an account” bullshit too.
- 4 months
I once used that thing and couldn’t figure out why I got errors. After hours I realize postman was sending headers you didn’t specifically configure and that caused it to fail.
- 4 months
collaboration is already happening on git - so API clients that allow this are a good solution: voiden.md, yaak and others are doing this as well.
- 4 months
Ran into this at work too. They just nixed the free group tier. I hope here are opensource alternatives we can pay for.
- 4 months
our team uses Bruno. We have nothing to complain about. And each request being a simple text file you can check into git is also really great.
- 4 months
How do you handle secrets? Env vars as described in the docs don’t seem like a solution for a team and we don’t have a vault provider. I was hoping it would have support for encrypting the files with a password or something. What’s your solution?
- 4 months
We only have 1 Secret we need to manage. The API we develop is secured via Token-based OIDC. While Bruno does support OIDC, they don’t yet support token based OIDC. So we have a pre-request script that does the auth flow and stores the resulting jwt in a runtime variable.
this way we only need to define a long lived service account json defining all we need for the auth flow. The /token endpoint is not a secret and we can commit it.
So this SA is created manually for every developer for every of our 3 stages
- 4 months
If you lack Vault, occasionally dropping the .env file contents into a shared (appropriately secured) BitWarden or KeePass vault will get the job done.




