Hi,
the following URL works in the web browser:
https://finance.yahoo.com/calendar/earnings?from=2021-10-31&to=2021-11-06&day=2021-11-05
But trying to get the html file programmatically with the command-line tool "wget" via a script file fails:
What follows is the output of wget:
wget normally functions well, but not with this URL. :-(
What's missing?
the following URL works in the web browser:
https://finance.yahoo.com/calendar/earnings?from=2021-10-31&to=2021-11-06&day=2021-11-05
But trying to get the html file programmatically with the command-line tool "wget" via a script file fails:
Code:
wget -O "earnings.html" "https://finance.yahoo.com/calendar/earnings?from=2021-10-31&to=2021-11-06&day=2021-11-05"
Code:
--2021-11-06 00:16:57-- https://finance.yahoo.com/calendar/earnings?from=2021-10-31&to=2021-11-06&day=2021-11-05
Connecting to 192.168.20.1:8118... connected.
Proxy request sent, awaiting response... 404 Not Found
2021-11-06 00:16:57 ERROR 404: Not Found.
What's missing?
