You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In this example, nc prints the GET request received from wget. Notice that it contains foo/bar, not foo%2Fbar as intended. I would expect that wget would URL encode URLs, but not URL DEcode URLs, as this example demonstrates.
I tried Wget 1.24.5, and it behaved as I would expect: it left the %2F intact when it sent its GET request.
The text was updated successfully, but these errors were encountered:
GitLab's API uses %2F in its URLs. For example,
https://gitlab.com/api/v4/projects/foo%2Fbar
refers to the userfoo
's project namedbar
.Wget2 2.1.0 seems to implicitly convert "%2F" strings in URLs to "/". Here is an example:
In this example,
nc
prints the GET request received fromwget
. Notice that it containsfoo/bar
, notfoo%2Fbar
as intended. I would expect that wget would URL encode URLs, but not URL DEcode URLs, as this example demonstrates.I tried Wget 1.24.5, and it behaved as I would expect: it left the
%2F
intact when it sent its GET request.The text was updated successfully, but these errors were encountered: