-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Redirection location method not GET #4397
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
I'm having the same issue. |
Hey! Thanks for reporting this issue. I've looked into how HTTP redirects should work, and here's what I found:
You can check out the full spec here: https://datatracker.ietf.org/doc/html/rfc7231#section-6.4 |
I didn't make it clear in my first post, in previous versions of Bruno (1.x.x and 2.0.0), the redirection worked fine. |
Axios internally uses bruno/packages/bruno-electron/src/ipc/network/axios-instance.js Lines 316 to 324 in e7dd78e
|
Uh oh!
There was an error while loading. Please reload this page.
I have checked the following:
This bug is:
Bruno version
2.0.1, 2.1.0
Operating System
macOS 15.3.2
Describe the bug
With a request like POST /resources
If the response is HTTP 303 with header location "/resources/1234"
Bruno try to call POST "/resources/1234" and failed because there is no such path
Bruno should call GET "/resources/1234"
.bru file to reproduce the bug
No response
Screenshots/Live demo link
failed with redirect :

303 when no redirect :

The text was updated successfully, but these errors were encountered: