Grabbing a file via auth HTTPS
February 26, 2005 9:11 AM
Subscribe
Using a PHP, Perl, or cron, how do I grab a xml page from a my TiVo that requires https authorization? I have the username and password.
Here's what the url with the username and password looks like. https://<login>:<pass>@<tivo-ip>/TiVoConnect?Command=QueryContainer&Container=/NowPlaying&Recurse=Yes
I don't have access to wget on my hosted site, and cURL didn't work for me. I keep getting bad authorization errors with it.
posted by riffola to computers & internet (16 comments total)
curl -O -u login:pass https://
posted by Remy at 9:21 AM on February 26, 2005