Create Short URLs Using U.Nu
I was recently referred to another URL shortening website called u.nu. As far as shortening services go, u.nu seems to have the field beat as far as the shortest base URL. If you're really intent on creating the shortest possible URLs, look no further than u.nu's API.
The PHP
function get_unu_url($url)
{
$url = 'http://u.nu/unu-api-simple?url='.urlencode($url);
$ch = curl_init();
$timeout = 5;
curl_setopt($ch,CURLOPT_URL,$url);
curl_setopt($ch,CURLOPT_RETURNTRANSFER,1);
curl_setopt($ch,CURLOPT_CONNECTTIMEOUT,$timeout);
$url = curl_exec($ch);
curl_close($ch);
return trim($url);
}
$short_url = get_unu_url('https://davidwalsh.name');
//returns http://u.nu/92e
That's it. I love that there's no XML or JSON involved with their API. What's returned is the URL and nothing more!
![CSS Animations Between Media Queries]()
CSS animations are right up there with sliced bread. CSS animations are efficient because they can be hardware accelerated, they require no JavaScript overhead, and they are composed of very little CSS code. Quite often we add CSS transforms to elements via CSS during...
![5 Awesome New Mozilla Technologies You’ve Never Heard Of]()
My trip to Mozilla Summit 2013 was incredible. I've spent so much time focusing on my project that I had lost sight of all of the great work Mozillians were putting out. MozSummit provided the perfect reminder of how brilliant my colleagues are and how much...
![Fixing sIFR Printing with CSS and MooTools]()
While I'm not a huge sIFR advocate I can understand its allure. A customer recently asked us to implement sIFR on their website but I ran into a problem: the sIFR headings wouldn't print because they were Flash objects. Here's how to fix...
![Creating the Treehouse Frog Animation]()
Before we start, I want to say thank you to David for giving me this awesome opportunity to share this experience with you guys and say that I'm really flattered. I think that CSS animations are really great. When I first learned how CSS...
Nice snippet David ! Thanks.
But it’s strange, a domain name can have just one letter, “u” in this case ? I always think the minimum was two.
Now if only they had analytics tracking…
“Domain names can be as short as one character. A premium of €500/yr applies to name registrations of one character in length, €250 for domain names of two-character length, and €30 per year for domain names of any other length. In June, 2008, .NU Domain began permitting registration of all-numeric domain names.”
from http://en.wikipedia.org/wiki/.nu
Unfortunately all one character domains are already bought :(
Wow! It seems the create API adds additional whitespace / carriage return though. Might want to additionally trim() the result.
I integrated it into PHPShortener
Thank you for reporting that Guillermo! Updated.
@Alex : thanks, it seems to be specific to dot nu :)
Hey David,
Nice work here, I had never heard of that particular url service, thanks for that. I was going to ask though, couldn’t you shorten it down to something like this?
Or was the reason because
file_get_contents
may not be available to everyone? I ask simply out of curiosity :)Thanks again!
@Drew Douglass: You can definitely use file_get_contents(). cURL is simply PHP best practice. Here’s a good resource:
http://stackoverflow.com/questions/555523/filegetcontents-vs-curl-what-has-better-performance
Thanks for the link David, that is very helpful.
awesome post.
You may want to note in your post that this service no longer appears to exist.