I would like to hear if any of you are using different app for API testing than Postman.

I’m not telling that Postman is bad, but maybe there’s all that I should check out. Recently I tried RapidApi and even tho the app is kinda cool I missed few options and went back to Postman for now.

  • Delta
    link
    fedilink
    English
    72 years ago

    Insomnia user here too, I’ve found it to be simple,clean and to my taste.

  • Gushys
    link
    fedilink
    English
    72 years ago

    Insomnia is great and has an easy, simple interface. But I feel like creating complex collections with different environments is a lot simpler with postman

  • @xenonyx@programming.dev
    link
    fedilink
    English
    12 years ago

    As a lot of other comments have already suggested, HTTP Toolkit is a good alternative and I used it quite a bit prior to discovering Postman…

  • snoweM
    link
    fedilink
    English
    122 years ago

    I completely stopped using all those clients. We now just store the requests alongside the code in an http file and use the built in IntelliJ HTTP Client to make the call. No need for a separate program, integrates with your code, you can save responses to make sure they don’t change, it’s all stored in git. There’s a ton of benefits and not many downsides.

  • @RonSijm@programming.dev
    link
    fedilink
    English
    62 years ago

    I usually generate an API client in C#, and just use that. For example, and entire integration CRUD test for a user would just be something like:

    var user = TestClient.CreateUser(1234, "Bob");
    user.Id.ShouldBe(1234);
    user.Name.ShouldBe("Bob");
    
    var userThroughGet = TestClient.GetUser(1234);
    userThroughGet.ShouldNotBeNull();
    
    TestClient.EditUser(1234, "John");
    userThroughGet = TestClient.GetUser(1234);
    userThroughGet.Name.ShouldBe("John");
    
    TestClient.DeleteUser(1234);
    userThroughGet = TestClient.GetUser(1234);
    userThroughGet.ShouldBeNull();
    

    Trying to set up those kinda scenarios quickly with Postman was getting pretty tedious

  • Kogasa
    link
    fedilink
    English
    72 years ago

    I’m saying that Postman is bad. maybe not in terms of functionality, but damn if it doesn’t run like a slug on my work computer, which is just fine handling a dozen Visual Studio and Rider instances. It seems like it works perfectly for about 5 minutes and then goes to crap.

    So yeah, I’d be interested in an alternative too. I only really use it for basic functionality (creating, sharing, and running collections of requests with configurable parameters).

    • @Buckshot@programming.dev
      link
      fedilink
      English
      22 years ago

      Same for me, I’ll notice my computer is a bit loud, realise I forgot to close postman and it’s just sitting there, doing nothing, minimised, and my 12 core CPU is sat at 20%.

      I close postman, within seconds the fans spin down.

      I’ve tried a few alternatives but the rest of the team use postman and we’ve got shared collections and pretty extensive pre-request scripts and nothing else I’ve tried really fits the bill.

      • Kogasa
        link
        fedilink
        English
        12 years ago

        There is always the web version of postman. It can make localhost calls if you install their desktop agent. Might have better memory management somehow? I dunno.

  • @CosmicPanda@programming.dev
    link
    fedilink
    English
    122 years ago

    Another vote for Insomnia here. I used to use Insomnia primarily until a lot of my work switched over to gRPC and I’ve found that Postman works a lot better for that. I still prefer Insomnia for the simple UX and speed, just wish it had better gRPC support.

    • @Sheldan@programming.dev
      link
      fedilink
      English
      1
      edit-2
      2 years ago

      I do have some bugs with Insomnia, for example with the oauth configuration failing. (I think it has something to do with some variable there failing) You can workaround that by just removing oauth, and configuring again, but its annowing.

      I still like insomnia overall tho.

  • @MariusGundersen@programming.dev
    link
    fedilink
    English
    52 years ago

    I find postman to be too complex, too much config all over the place. It’s also difficult to share with others, it would be much better if it could store the settings in a file that could then be checked into git. That way everyone on the project would have the requests and could add and modify them as the server changes. Does any client like this exist?