Live data from Hacker News

Tell HN: Postman update removes all your stuff if you refuse to create account

news.ycombinator.com

21–30 of 181 posts

Re: Tell HN: Postman update removes all your stuff if you refuse to create account

#21
another alternative: RapidAPI https://rapidapi.com/

it's a good api client, and it's free for individual use and they have some sort of nifty marketplace integration catalog...thing with remote API servers that makes it easy to find and try API services that offer data / functionality you want to connect to.

Re: Tell HN: Postman update removes all your stuff if you refuse to create account

#23
After the whiffs of enshittification caught my nose I did some research and switched over to Insomnia. I don’t make use of any advanced features, just a pre request authentication call that was a little bit of a pain to set up. But it’s working exactly how I was using postman so it’s a suitable replacement for me

Re: Tell HN: Postman update removes all your stuff if you refuse to create account

#24
post #23

After the whiffs of enshittification caught my nose I did some research and switched over to Insomnia. I don’t make use of any advanced features, just a pre request authentication call that was a little bit of a pain to set up. But it’s working exactly how I was using postman so it’s a suitable replacement for me

Didn't they just push a similar update where they require an account? And pushed all data into their cloud sync without asking?

Re: Tell HN: Postman update removes all your stuff if you refuse to create account

#25
post #11
post #6

Learn and use curl, then you won’t have any issues like this. You can make some scripts in Python or something, too. I say this because the last three tools I used for this all got shitty (postman, insomnia, and thunder client).

Curl is not sufficient for rapid experimentation against an API.

Depends how comfortable you are with curl and your workflow. I'm much more productive using curl vs any GUI you give me. Still have OpenAPI specs in my projects but curl is much faster initially.

Re: Tell HN: Postman update removes all your stuff if you refuse to create account

#27
There are some extensions for VSCode that let you define your requests in a text file and has ways to run the file and show the data.

Here's one I just found: https://marketplace.visualstudio.com/items?itemName=humao.re...

Syntax looks like:

    GET https://example.com/comments/1 HTTP/1.1

    ###

    GET https://example.com/topics/1 HTTP/1.1

    ###

    POST https://example.com/comments HTTP/1.1
    content-type: application/json

    {
        "name": "sample",
        "time": "Wed, 21 Oct 2015 18:27:50 GMT"
    }

Re: Tell HN: Postman update removes all your stuff if you refuse to create account

#28

For the emacs users: restclient.el It’s excellent. Doesn’t have server mocking AFAIK, :shrug:

I really like restclient - also really makes sense for persisting tests in this manner to source control. Not that anybody else on your team will know how to use it...

Re: Tell HN: Postman update removes all your stuff if you refuse to create account

#30

We’re building an open-source Postman alternative. 1.6m+ users, 100k+ monthly active users, 55k+ GitHub stars. Web app: https://hoppscotch.io GitHub: https://github.com/hoppscotch/hoppscotch

But you raised VC funding right?

Insomnia was an alternative to Postman, raised VC funds, eventually needed to justify that, and suddenly accounts mattered more. They're currently on the same trajectory.

Insomnia is open source but just like OP experienced, a single update can do damage and it takes time for the community to react.

Is this the same company that raised? If so, are you exempt from that? Have you figured out some monetization scheme for what is essentially a glorified curl UI that doesn't incentivize account sign ups?

Post reply on HN