My NSURLComponents is translating '/' to '%2F'. Please see log after 10.32.135.10.
NSURLComponents *urlComponent = [[NSURLComponents alloc] init];
[urlComponent setScheme:@"http"];
[urlComponent setHost:@"10.32.135.10/test.API"];
[urlComponent setPath:@"/api/path"];
urlComponent.queryItems = qItems;
In Log when I executed
po [urlComponent URL]
http://10.32.135.10%2Ftest.API/api/path?asetTypeId=1003
Why backward slash is translated into %2F. Please guide.
Because
/test.API
should be on thepath
.Let's think about it the other way:
Output:
Fix: