After Starson17 pointed me in the right direction yesterday with some debug functions in Google Reader, I've managed to progress to the point where I am getting logged into a subscription only site~only to find that the session cookie(s) are not being sent to the server when my recipe gets around to downloading articles.
I was thinking that
cookies = mechanize.CookieJar()
br = mechanize.build_opener(mechanize.HTTPCookieProcess or(cookies))
would handle sending the PHPSESSID cookie back to the server, but that doesn't seem to be so.
So what should I be using to get the sessions to persist for the feed downloads?
Thank you, and I promise to put python on my list of things to do...