I'd like to get the content of a wiki page from my trac (1.0.9) using a script. My Trac is served through apache httpd and adopts a Basic AuthType.
So I tried to use wget
as follows
wget http://my/trac/wiki/MyWikiPage?format=txt --user=<THISISME> --ask-password --auth-no-challenge -q -O -
but I get a 403 error.
HTTP request sent, awaiting response... 403 Forbidden
Is there something wrong? Or in other words, is thre a way to simply fetch remotely a wiki page from Trac (taking authentication into account)? Thx