NSRequest - encode url for NSRequest POST Body (iPhone objective-C) - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T13:23:15Zhttp://stackoverflow.com/feeds/question/787582http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/787582/nsrequest-encode-url-for-nsrequest-post-body-iphone-objective-c2NSRequest - encode url for NSRequest POST Body (iPhone objective-C)Corey Floyd2009-04-24T21:06:40Z2009-04-26T23:40:01Z
<p>I am sending a post using NSRequest. </p>
<pre><code>NSURL *url = [NSURL URLWithString:someUrlString];
NSMutableURLRequest *theRequest = [NSMutableURLRequest requestWithURL:url];
NSString *msgLength = [NSString stringWithFormat:@"%d", [parameterString length]];
[theRequest addValue: msgLength forHTTPHeaderField:@"Content-Length"];
[theRequest setHTTPMethod:@"POST"];
[theRequest setHTTPBody: [parameterString dataUsingEncoding:NSUTF8StringEncoding]];
</code></pre>
<p>Within the body of the Request I am encoding the following NVP:</p>
<p>returnURL=<a href="http://someSite.com" rel="nofollow">http://someSite.com</a></p>
<p>The post is going through successfully, but I get an error back.
The error states an invalid url.</p>
<p>So, I changed it to:</p>
<p>returnURL=http:%2F%2FsomeSite.com</p>
<p>With the same error.</p>
<p>I have also double checked it with Todd Ditchendorf's HTTP Client, with the same results.</p>
<p>I know I must be encoding this wrong can someone tell me what I am doing wrong?</p>
<p>Thanks
Corey</p>
<p>**UPDATE:
Thanks to those who answered. I missed an ampersand in my NVP values. So of course, as soon as I fixed it, everything was fine. What I suspectede, the encoding of a url in the body of the post was incorrect. I am not using the ASIHTTPRequest framework, but it did help me troubleshoot the problem (overkill for what I needed).
**</p>
http://stackoverflow.com/questions/787582/nsrequest-encode-url-for-nsrequest-post-body-iphone-objective-c/788696#7886963Answer by Alex Reynolds for NSRequest - encode url for NSRequest POST Body (iPhone objective-C)Alex Reynolds2009-04-25T11:01:22Z2009-04-25T11:01:22Z<p>Consider using Ben Copsey's <a href="http://allseeing-i.com/ASIHTTPRequest/How-to-use" rel="nofollow"><code>ASIHTTPRequest</code></a> framework for generating and sending synchronous and asynchronous HTTTP requests (POST and GET):</p>
<pre><code>ASIFormDataRequest *request = [[[ASIFormDataRequest alloc] initWithURL:@"http://someSite.com"] autorelease];
[request setPostValue:@"myValue1" forKey:@"myFormField1"];
[request setPostValue:@"myValue2" forKey:@"myFormField2"];
// etc.
[request start];
NSError *error = [request error];
if (!error)
NSString *response = [request responseString];
</code></pre>
<p>His framework is a huge time-saver.</p>
http://stackoverflow.com/questions/787582/nsrequest-encode-url-for-nsrequest-post-body-iphone-objective-c/790275#7902752Answer by Chris Lundie for NSRequest - encode url for NSRequest POST Body (iPhone objective-C)Chris Lundie2009-04-26T05:12:55Z2009-04-26T05:12:55Z<p>I don't know if this solves your problem, but</p>
<pre><code>[parameterString length]
</code></pre>
<p>is often not be equal to the length of</p>
<pre><code>[parameterString dataUsingEncoding:NSUTF8StringEncoding]
</code></pre>
<p>because UTF8 encodes characters with varying numbers of bytes.</p>