(no title)
jabbawookiees | 2 years ago
What is Postman? It's a tool that allows you to configure, save, and replay HTTP requests. It helps developers building backend server APIs, so they don't have to keep fiddling around with their frontend. In many greenfield projects, the frontend doesn't even exist yet and Postman is effectively the only way to easily test what you're working on.
The alternative to postman is writing custom Python/NodeJS/etc programs to send these requests or painfully doing it with curl and bash.
I think it's cool and I'll probably try it the next time I have to work on REST APIs.
contravariant|2 years ago
Then again I'm mostly looking at APIs to eventually use them in some other python script so perhaps my use case is not the best fit.
Unless the API does something weird you can do a lot worse than using curl and bash. I mean even using telnet (or openssl s_client) is not too bad if you're only doing a simple GET.
JoBrad|2 years ago
OtomotO|2 years ago
floorballchamp|2 years ago
The question was what that is.
"What does Foo do?" -- "Well just like what Bar does?" -- <no clue about Bar either>
zknowledge|2 years ago
> What is Postman? It's a tool that allows you to configure, save, and replay HTTP requests.