(using PHP as a base for this)say i was one one site and wanted to make a widget to access my TWW inboxis there any way to copy over the stored TWW cookies and use them?Alternately and probably preferably, how about having them inputed from the remote site, then stored as cookies of that site and passed along to TWW?can cURL do this and if so how/examples plz? (never used curl before)any help would be appreciated
1/5/2009 8:05:00 PM
pm qntmfred
[Edited on January 5, 2009 at 8:08 PM. Reason :
1/5/2009 8:08:14 PM
1/5/2009 8:22:02 PM
export your cookies from Firefox or whatever browser you use, or use something like the TamperData add-on for Firefox to capture the session cookiethe session (used to) never change, I think it may change on login now but probably doesn't expire otherwise, but in either case you just need this to continue the sessionafter you capture the session cookie you can then use wget, lwp, etc with the appropriate option to load the cookies after exporting them to a cookies.txt filee.g. wget --load-cookies ~/tww-cookies.txt http://www.thewolfweb.com/mail_inbox.aspx*I can't seem to locate my session cookie in cookies.txt so I assume it's now a temporary cookie, you'll have to use something like TamperData to log it probably then[Edited on January 5, 2009 at 9:06 PM. Reason : *]
1/5/2009 9:03:58 PM
i need to to be all scripted, regardless of the browser/addons though
1/6/2009 8:14:34 AM
http://www.weberdev.com/get_example-4555.html helped a bunch if anyone's curious
1/6/2009 5:55:56 PM