Tony Lewis wrote:
pedro lomas wrote:
I'm trying to download a complete copy of a personal blog that is not
public and therefore requires authentication blogger, by username and
password.
I used the command:
[email protected] wget -http-password = password
--mirror http://nombredelblog.blogspot.com.es/
The correct syntax includes two hyphens and does not include spaces:
--http-password=password
Also, you probably need to include the user ID: --http-user=user
Hope that helps.
Tony
Yes, that would be
wget [email protected] --http-password=password
--mirrorhttp://nombredelblog.blogspot.com.es/
*assuming* that blogspot supports basic authentication (which is
probably not the case).
Otherwise, you will need to start playing with cookies in order to make
wget look like the logged-in user.