Description
Wrong redirection chain breaks the request if trailing slash is missed in the endpoint URL.
https://api.ordoro.com/order redirects to http://api.ordoro.com/order/ that falls off by timeout.
I expected:
I expected request to land to the correct endpoint URL after all redirects.
Request Details
$> curl -I https://api.ordoro.com/order
Response Details
HTTP/1.1 308 PERMANENT REDIRECT
…
Location: http://api.ordoro.com/order/
…