Is it possible to load a page through UIWebView with POST parameters? I can probably just load an embedded form with the parameters and fill them in with javascript and force a submit, but is there a cleaner and faster way?

Thanks!

link|improve this question
feedback

1 Answer

up vote 29 down vote accepted

Create POST URLRequest and use it to fill webView

 NSURL *url = [NSURL URLWithString: @"http://your_url.com"];
    NSString *body = [NSString stringWithFormat: @"arg1=%@&arg2=%@", @"val1",@"val2"];
    NSMutableURLRequest *request = [[NSMutableURLRequest alloc]initWithURL: url];
    [request setHTTPMethod: @"POST"];
    [request setHTTPBody: [body dataUsingEncoding: NSUTF8StringEncoding]];
    [webView loadRequest: request];
link|improve this answer
Tested it and it works, thanks! – jurek epimetheus Jul 20 '09 at 3:28
works well. Cheers – Nielsou Hacken-Bergen Aug 25 '11 at 15:32
I think the request should be released at the end. :) – Kjuly Mar 27 at 3:56
feedback

Your Answer

 
or
required, but never shown