I'm using AFNetworking in my iOS App. I've discovered a problem that occurs when request parameters contain percent signs. Then the encoding fails. The method AFURLEncodedStringFromStringWithEncoding returns nil.

I've tested this code and it prints (null):

NSLog(@"%@", AFURLEncodedStringFromStringWithEncoding(@"%", NSUTF8StringEncoding));

The expected output should be: %25. Other characters can be encoded with no problem.

The method is defined as follows:

NSString * AFURLEncodedStringFromStringWithEncoding(NSString *string, NSStringEncoding encoding) {
    static NSString * const kAFLegalCharactersToBeEscaped = @"?!@#$^&%*+,:;='\"`<>()[]{}/\\|~ ";

    // Following the suggestion in documentation for `CFURLCreateStringByAddingPercentEscapes` to "pre-process" URL strings (using stringByReplacingPercentEscapesUsingEncoding) with unpredictable sequences that may already contain percent escapes.
    return [(NSString *)CFURLCreateStringByAddingPercentEscapes(kCFAllocatorDefault, (CFStringRef)[string stringByReplacingPercentEscapesUsingEncoding:encoding], NULL, (CFStringRef)kAFLegalCharactersToBeEscaped, CFStringConvertNSStringEncodingToEncoding(encoding)) autorelease];
}

Any ideas what's going wrong here?

EDIT: The issue has been fixed in AFNetworking.

link|improve this question

60% accept rate
Check what [string stringByReplacingPercentEscapesUsingEncoding:encoding] returns. – Mattias Wadman Jan 25 at 16:45
1  
@MattiasWadman that also returns nil. I solved the issue already by calling stringByAddingPercentEscapesUsingEncoding before the encoding. – phix23 Jan 25 at 16:53
feedback

2 Answers

up vote 0 down vote accepted

I don't know about the API but URL encoding is normally done by

  • UTF-8 encoding the string portions--path, arguments, etc--into bytes
  • applying percent-encoding of the byte values to obtain ASCII-only string pieces
  • assembling the URL pieces together with the separators :, /, ?, & etc.
  • encoding that string into bytes again
  • sending it over the wire

See http://tools.ietf.org/html/rfc3986#section-2.5 for nuances. Note that the RFC states that if the URL refers to a document on an EBCDIC system, the URL should specify the byte values for the EBCDIC encoding of its name, not the string name that human users of the EBCDIC system know it by. So a URL is ultimately a byte-string not a character-string.

As to how to get your API to represent that byte-string correctly, I am unsure.

link|improve this answer
feedback

just remove the stringByReplacingPercentEscapesUsingEncoding:encoding is ok,no need to do the encode twice,so the return value should be:

return [(NSString *)CFURLCreateStringByAddingPercentEscapes(kCFAllocatorDefault, (CFStringRef)string], NULL, (CFStringRef)kAFLegalCharactersToBeEscaped, CFStringConvertNSStringEncodingToEncoding(encoding)) autorelease];

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.