ASIHTTPRequest on www.blau.de?
Posted
by rdesign
on Stack Overflow
See other posts from Stack Overflow
or by rdesign
Published on 2010-05-11T23:23:57Z
Indexed on
2010/05/12
1:04 UTC
Read the original article
Hit count: 392
iphone
|asihttprequest
Hey guys,
I need to login here. I've tried the ASIHTTPRequest and ASIFormDataRequest.
None of them works as expected. I only got the data from the loginpage in the response string, not the data from the secure area.
What am I doing wrong here?
ASIFormDataRequest *request = [ASIFormDataRequest requestWithURL:[NSURL URLWithString:@"https://www.blau.de/"]];
[request setPostValue:@"USERNAME" forKey:@"quickLoginNumber"];
[request setPostValue:@"PASSWORD" forKey:@"quickLoginPassword"];
[request startAsynchronous];
© Stack Overflow or respective owner