this post was submitted on 09 Aug 2023
17 points (81.5% liked)

Technology

72423 readers
2522 users here now

This is a most excellent place for technology news and articles.


Our Rules


  1. Follow the lemmy.world rules.
  2. Only tech related news or articles.
  3. Be excellent to each other!
  4. Mod approved content bots can post up to 10 articles per day.
  5. Threads asking for personal tech support may be deleted.
  6. Politics threads may be removed.
  7. No memes allowed as posts, OK to post as comments.
  8. Only approved bots from the list below, this includes using AI responses and summaries. To ask if your bot can be added please contact a mod.
  9. Check for duplicates before posting, duplicates may be removed
  10. Accounts 7 days and younger will have their posts automatically removed.

Approved Bots


founded 2 years ago
MODERATORS
 

What alternative to 'postman' do you like the most for simply testing a bunch of REST services?

all 15 comments
sorted by: hot top controversial new old
[–] Gnubyte@lemdit.com 8 points 2 years ago

Insomnia.rest generally is my tool: https://github.com/Kong/insomnia

Thunder Client if you like to keep all the relevant requests n data inside the project directory, probably good for teams: https://open-vsx.org/extension/rangav/vscode-thunder-client

With VS-Codium (vscode with the microsoft telemetry scraped out): https://vscodium.com/

[–] w2qw@aussie.zone 4 points 2 years ago
[–] wernsting@lemm.ee 2 points 2 years ago* (last edited 2 years ago)

I’ll use REST Client in visual studio code when working on Azure functions etc

Curl. Or if I need to chain stuff together for auth reasons or whatever, sometimes ill just pop into a python virtualenv and use requests

[–] oddsys@lemmy.world 2 points 2 years ago

SoapUI open source version works pretty well and does not require a logon to save your projects

[–] cpressland@celeb.pizza 2 points 2 years ago

I’ve recently been looking at Hopscotch: https://github.com/hoppscotch/hoppscotch

But the free version of Postman seems to offer everything we’d want.

[–] voidentropy@lemm.ee 2 points 2 years ago
[–] sknowmads@dormi.zone 1 points 2 years ago

Why switch? Postman is still my go-to

[–] namelivia@lemmy.world 1 points 2 years ago
[–] starman@programming.dev 1 points 2 years ago

Sometimes swagger UI

[–] Brisolo32@lemmy.eco.br 1 points 2 years ago

Insomnia or just plain old cURL

[–] ictinus@lemmy.world 1 points 2 years ago

And which ones handle injecting base 64 encoded file content (100MB) into the json body well? I've been using SoapSonar, but I'm having issues with this at the moment.

[–] 520@kbin.social 1 points 2 years ago

Depends on what tests I want to do. Sometimes I just make a python script.