-
Notifications
You must be signed in to change notification settings - Fork 1.8k
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
/redirect-to returns 404 #617
/redirect-to returns 404 #617
Comments
Same here |
The endpoint currently returns 404. The issue is reported: postmanlabs/httpbin#617
The endpoint currently returns 404. The issue is reported: postmanlabs/httpbin#617
Skip for now until postmanlabs/httpbin#617 is fixed.
@codenirvana I can't find information on who the current maintainer is for httpbin. |
cc. @kunagpal |
Also experiencing this problem with tests for https://github.com/borkdude/babashka.curl |
Need to host httpbin ourselves or wait for postmanlabs/httpbin/issues/617 to be resolved
Is @ken-reitz still the maintainer for httpbin? His website is still linked from httpbin.org but the repository now redirects to the postmanlabs organization? |
Weekly build is failing since https://travis-ci.org/github/itamae-kitchen/itamae/builds/700342208 https://httpbin.org/#/Redirects/get_redirect_to says `https://httpbin.org/redirect-to` returns 302, but actual is 404 ``` $ curl -I https://httpbin.org/redirect-to?url=https%3A%2F%2Fhttpbin.org%2Fget HTTP/2 404 server: awselb/2.0 date: Mon, 29 Jun 2020 15:43:42 GMT content-type: text/plain; charset=utf-8 content-length: 0 ``` This is issue of https://httpbin.org c.f. postmanlabs/httpbin#617 So I temporarily disabled
httpbin.org is having some issues with redirect endpoints, see postmanlabs/httpbin#617 (my favorite conspiracy theory is that an open-redirect HTTP server is a huge security hole that can be abused in all sorts of ways, so someone "plugged" it by blackholing the endpoint)
Same for |
Until postmanlabs/httpbin#617 is fixed or we found an alternative, the redirect tests will be skipped.
Hey, |
…ostmanlabs/httpbin#617 is still open. Signed-off-by: David Black <dblack@atlassian.com>
Fix the failing test by switching to https://nghttp2.org/httpbin/ as postmanlabs/httpbin#617 is still open.
Same for |
Switch to an alternative mirror for httpbin as httpbin.org redirect URLs are currently broken (postmanlabs/httpbin#617) Due to a few other changes between mirrors, some other minor tweaks required to ignore minor differences in responses etc.
Follow 3XX status redirects with a new request. Parse the 'location' header for an absolute url, absolute path, or relative path. Replace or amend the url from the original request and place a new request. Expand the requests_simpletest_cpython.py example with new requests utilizing the three supported types of redirects. Note: We're using the httpbingo.org domain for redirects until the following issue on httpbin.org is resolved: postmanlabs/httpbin#617 This has been tested on CPython and an ESP32-S2 based MagTag board.
Follow 3XX status redirects with a new request. Parse the `location` header for an absolute url, absolute path, or relative path. Replace or amend the url from the original request and place a new request. Convert all keys in the headers dictionary to lowercase to perform a case-insensitive search. There's no limit on the number of consecutive redirects. Since the `requets()` method is now recursive, multiple redirects may crash the stack. Especially on a CircuitPython microcontroller. Expand the requests_simpletest_cpython.py example with new requests utilizing the three supported types of redirects. Note: We're using the httpbingo.org domain for redirects until the following issue on httpbin.org is resolved: postmanlabs/httpbin#617 This has been tested on CPython 3.8 and an ESP32-S2 based MagTag board running CircuitPython 6.0.
August 2020 @kunagpal wrote:
About a year later... I guess it's probably not coming back? |
please return back to this project and fix this issue 🙏 |
Sorry for not getting to this a lot sooner. This should be fixed now. |
Doesn't look like it's fixed. Or are we waiting for a rollout?
|
@dgw should work now! |
@anshuljain03 Tested again and yep, it does! 🥳 |
postmanlabs/httpbin#617 has been fixed.
postmanlabs/httpbin#617 has been fixed.
All the
/redirect-to
endpoints are returning 404s.The text was updated successfully, but these errors were encountered: