What is the simplest way to retrieve the original URL for a short URL in Cocoa? Anything that can be done in just a few lines?

link|improve this question

78% accept rate
First, define short URL. Second, unless you have all of the parts of the original URL, you can't pull it out of thin air. – Evan Mulawski Dec 19 '10 at 0:08
feedback

2 Answers

up vote 3 down vote accepted

UPDATE: I just saw your comment and realised it's following the redirect.

See the delegate method: connection:willSendRequest:redirectResponse:, which tells you it's doing a redirect to this new request, based on the previous response.

You can get the expanded URL either from the new request here, or from the Location header of the redirect response.

Discussion If the delegate wishes to cancel the redirect, it should call the connection object’s cancel method. Alternatively, the delegate method can return nil to cancel the redirect, and the connection will continue to process. This has special relevance in the case where redirectResponse is not nil. In this case, any data that is loaded for the connection will be sent to the delegate, and the delegate will receive a connectionDidFinishLoading or connection:didFailLoadingWithError: message, as appropriate.

Original answer follows...

Use NSURLConnection with a delegate. In your delegate's connection:didReceiveResponse: method, fetch allHeaderFields and read the value of the "Location" header.

Something like:

-(void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response {
    NSLog(@"Expanded URL = %@", [[(NSHTTPURLResponse *)response allHeaderFields] objectForKey:@"Location"]);
}

I'd create a little URLExpander class to do this personally, with a signature something like:

+(void)asyncExpandURL:(NSURL *)aURL didExpandTarget:(id)target selector:(SEL)selector;

Then just pass back two arguments in your message, one for the short URL, one for the long.

link|improve this answer
I'd make it an object and have it not retain the target. That way, you can release the object—and thereby cancel the request—if your object (e.g., document) goes away. – Peter Hosey Dec 19 '10 at 0:58
Hmmm...doesn't seem to be returning the "Location" header: – Jordan Kay Dec 19 '10 at 2:00
connection:didReceiveResponse: { "Cache-Control" = "max-age=300, must-revalidate"; Connection = "Keep-Alive"; "Content-Type" = "text/html; charset=UTF-8"; Date = "Sun, 19 Dec 2010 01:54:10 GMT"; Server = "Apache/2.2"; "Set-Cookie" = "X-Mapping-edcdikko=AC17288FCF56ED010476BDE83D0C0E9D; path=/"; "Transfer-Encoding" = Identity; Vary = "Accept-Encoding,Cookie"; "Wp-Super-Cache" = "Served supercache file from PHP"; } – Jordan Kay Dec 19 '10 at 2:01
What is the short URL? – d11wtq Dec 19 '10 at 2:06
Just added an update to my answer. I hadn't realised it would follow redirects, but fortunately there's a delegate method (how convenient!) for this. – d11wtq Dec 19 '10 at 2:14
feedback

there is no simple way, you have to request the short-url-providing-server and get the full url. This must be done with a url connection and maybe some logic behind to get the redirect link (I haven't tried yet)

link|improve this answer
Also, it needn't be a full GET request either, HEAD should suffice. – bcarlso Dec 19 '10 at 0:21
feedback

Your Answer

 
or
required, but never shown

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