> Am 22.02.2019 um 18:40 schrieb Alex Zavatone <z...@mac.com>:
> 
> There are 2 problems here.
> 
> The description is non standard and misleading and the /api string is 
> stripped from the URL that it indicates it will use in that URL.  Look.
> 
> (lldb) po [[NSURL URLWithString:@"/login" 
> relativeToURL:self.sharedData.webServicesURL] absoluteURL]
> https://home-qa.mrcooper.com/login <https://home-qa.mrcooper.com/login>
> 
> (lldb) po [NSURL URLWithString:@"/login" 
> relativeToURL:self.sharedData.webServicesURL] 
> /login -- https://home-qa.mrcooper.com/api <https://home-qa.mrcooper.com/api>
> 
> See how in the top output that /api is stripped from the URL that it will use 
> while it is displayed in the output on the bottom?
> 
> Damn misleading.  

That is not misleading, that is how relative URLs are supposed to work. You 
should have done:

 [[NSURL URLWithString:@"login" relativeToURL:self.sharedData.webServicesURL] 
absoluteURL] with self.sharedData.webServicesURL being: 
„https://home-qa.mrcooper.com/api/„

for more information please refer to: 
http://webreference.com/html/tutorial2/3.html


regards,

        Lars
_______________________________________________

Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:
https://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com

Reply via email to