Timeline for how to get full URL from shortened URLs like bit.ly?
Current License: CC BY-SA 4.0
4 events
| when toggle format | what | by | license | comment | |
|---|---|---|---|---|---|
| May 16 at 23:56 | comment | added | wobtax | Thanks, didn't know that! Added both changes. | |
| May 16 at 23:56 | history | edited | wobtax | CC BY-SA 4.0 |
Changed to HEAD request, match case-insensitive, use CRLF instead of LF to end lines.
|
| May 16 at 22:45 | comment | added | dave_thompson_085 | Although many webservers will Postelianly accept that, the lines of an HTTP request header (or response header also) should end with CRLF not just LF, and there should be only one empty line following the header not two. Also header names may vary in capitalization, which gawk can handle easily with IGNORECASE=1 . | |
| May 16 at 22:25 | history | answered | wobtax | CC BY-SA 4.0 |