I'm making a POST request to a login API in Postman, with body parameters, and it returns like this:
{
"redirect_uri": "https://example.com/authorization?etc=etc..."
}
I would like Postman to format for me the return to:
{
"redirect_uri": "localhost:8080/authorization?etc=etc..."
}
Is it possible?
I managed to do it using visualize and the example from Malsha Liyanage:
On tests put this:
And on Visualize, press button copy to get the url and paste on browser, very simple.