This should be possible using the NSURLProtocol class method:
+ (id)propertyForKey:(NSString *)key inRequest:(NSURLRequest *)request
So, if you have a property named "place", you can try the following:
[NSURLProtocol propertyForKey:@"place" inRequest:myRequestObject]
[EDIT] If you want to get all the properties, I think you should use - (NSData *)HTTPBody from NSURLRequest , and then analyze the property names / values โโyourself. There should be no problems with urldecode and RegEx.
source share