If you check both cases have the same URL's. Maybe you should post a screenshot.
How to solve Laravel JSON response formatting problem
I'm in big trouble here! In fact, with Laravel I generate a url that I return as an answer. But the problem is that the returned URL contains double backslashes. Like http://localhost:8003/book?key=4fCNcwyuWJgn8LQN and yet I want to have it in the form http://localhost:8003/book?key=4fCNcwyuWJgn8LQN.
I return the url as php return response()->json([url => $url]); and before the response I get http://localhost:8003/book?key=4fCNcwyuWJgn8LQN but the response I get is http://localhost:8003/book?key=4fCNcwyuWJgn8LQN
That is perfectly normal in Insomnia.
It escapes all backslashes.
I know this is not the answer you want to hear, but using Postman you dont have this problem.
Please or to participate in this conversation.
