The 140 character limit in twitter has made the necessity of URL shortner services. There are many URL shortening services available like http://goo.gl, http://bit.ly, http://ow.l etc.. You can even have your own short URL service, if you are so much worried about your brand. Deciding which type to use is surely a decision based on your business and revenue stream. If you are getting a majority of your business on Twitter, or if you have an extremely long URL and need to shorten it up for print, social media, television, or other advertising to help make it memorable, then a custom shortened URL is probably the way to go for you. Also, if you want 100 percent control over your content and your identity, then you should also be shopping for your own shortened identity.
For the rest of you, maybe goo.gl will suffice, or maybe registering hybrid bit.ly or awe.sm customized URL will fill the gap. Through this tutorial we are going to help these sort of people who are not so worried about their brands.
How to create short URL with Goo.gl and php
It is easy to create short URL’s with Google’s URL shortening service, http://goo.gl. Use the following code. You need to have curl enabled in your server. You also need to get an API Key from http://code.google.com/apis/console/
$longUrl, 'key' =>; $GoogleApiKey); $jsonData = json_encode($postData); $curlObj = curl_init(); curl_setopt($curlObj, CURLOPT_URL, 'https://www.googleapis.com/urlshortener/v1/url'); curl_setopt($curlObj, CURLOPT_RETURNTRANSFER, 1); //As the API is on https, set the value for CURLOPT_SSL_VERIFYPEER to false. This will stop cURL from verifying the SSL certificate. curl_setopt($curlObj, CURLOPT_SSL_VERIFYPEER, 0); curl_setopt($curlObj, CURLOPT_HEADER, 0); curl_setopt($curlObj, CURLOPT_HTTPHEADER, array('Content-type:application/json')); curl_setopt($curlObj, CURLOPT_POST, 1); curl_setopt($curlObj, CURLOPT_POSTFIELDS, $jsonData); $response = curl_exec($curlObj); $json = json_decode($response); curl_close($curlObj); return $json->id; } ?>
Now you can get the short URL for your long URL by simply
How to create short URL with http://bit.ly and php
You can also use the service of http://bit.ly another popular URL shortening service. The only demerit with them is that, you need to have an account with them. Here is the php code to create short URLs with bit.ly
To show the short URL, simply
Thats it. If time permits, we will add codes for doing the same with other service providers too. Also the code for the reverse too, that is to get the original URL from a short URL.
We have released a plugin for elgg with the above code, which you can download from the elgg community.
Tags: bit.ly short url, create short url with php, goo.gl short url, google short urls, php short urld, short url in php, short urls
the info shared in this blog is very interesting, i hope everyone like it.
Very good this code, but I would like to know how to adapt it to the button-sharing links on Twitter. Can you help me?
The code that I use is this:
Tweet
!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=”//platform.twitter.com/widgets.js”;fjs.parentNode.insertBefore(js,fjs);}}(document,”script”,”twitter-wjs”);
the bitly example works fine
Working good.
But i wonder if url shortener can improved SEO for backlink?
I want to use it for my website Images Search Engine for some internal url but using goo.gl.
Thanks for the confirmation.
Nice and easy
In google case, API Key isn’t necessary!