Wget Error 503

$ wget www.amazon.com
Resolving www.amazon.com... 205.251.242.54
Connecting to www.amazon.com|205.251.242.54|:80... connected.
HTTP request sent, awaiting response... 503 Service Unavailable
2015-10-12 23:27:24 ERROR 503: Service Unavailable.

I am trying to release wgetat a url and get this error. I need to save HTML files and I was hoping wget would work :(

I tried using a parameter --no-proxy, but that does not help.

+4
source share
2 answers

I can release wget http://www.amazon.comwithout a problem.
I assume that you were blocked by Amazon after a little busting ...

503 Service unavailable

- . , . , Retry-After. , , 500.

  Note: The existence of the 503 status code does not imply that a
  server must use it when becoming overloaded. Some servers may wish
  to simply refuse the connection.

http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html

+3

, Amazon , .

wget ( , , ):

wget -U "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.79 Safari/537.36" https://amazon.com
+3

Source: https://habr.com/ru/post/1611368/


All Articles