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?
feedback
|
|
UPDATE: I just saw your comment and realised it's following the redirect. See the delegate method: You can get the expanded URL either from the new request here, or from the Location header of the redirect response.
Original answer follows... Use Something like:
I'd create a little
Then just pass back two arguments in your message, one for the short URL, one for the long. | |||||||||||
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) | |||
|
feedback
|