so I have a Track system with some kind of protection. So to get some data from any URL you have to pass protection like this http://188.134.14.27/projects/cloudobserver/login and then (in browser) you can see some pages http://188.134.14.27/projects/cloudobserver/wiki/CloudObserverCMSSetup (if you havent passed login youll get no content) so how to login and get data from page using flash/actionscript (btw I am triing to create an rss reader)?
A:
You need to determine the type of the authentication your webapp uses. If it's cookies, you may try to use something like this:
Attempt to login.
If the attempt is successful, webapp will return a cookie. Save this cookie.
Every subsequent request to the webapp, supply the authentication cookie, so that the app knows that you've authenticated.
Does this make sense to you?
EightyEight
2010-03-20 00:09:57