Using the BitLy API to shorten urls

I was asked to place Twitter messages with product links when new products were added to a webshop. I’ve used my own Twitter class for posting the first test Tweet then I went looking for a shorten url a service to shorten the product links.

There are many url shorten services available on the internet, one of these services is Bitly.
The reasons why I’ve chosen Bitly:
– Urls don’t expire after a period of time.
– Bitly provides a click url summary (although Google Analytics can be used for this instead)
– Urls are short in length so i could use the remaining Tweet length for a small product description.
– And more important, they provide an easy to use API.
– Authentication does not require a password, we can use our API key instead.

Before we can connect to the API, we need a Bitly account, the account can be created at http://bit.ly/ to obtain a free API key.

The communication process is quite simple:
– Authenticate with your Bitly username and API key
– Call the right Bitly API url with the correct parameters for the action we want to perform
– Process the result

Below are some snippets of my Bitly class:

class BitLy
{
	/**
	 * Version of the bit ly api
	 * @var string
	 */
	private $sApiVersion = '2.0.1';

	/**
	 * Url of the api
	 * @var string
	 */
	private $sApiUrl = 'http://api.bit.ly/';

	/**
	 * username
	 * @var string
	 */
	private $sUsername;

	/**
	 * apikey
	 * @var string
	 */
	private $sApiKey;

	/**
	 * Set username and apikey
	 *
	 * @param string $sUsername
	 * @param string $sApiKey
	 * @return void
	 */
	public function  __construct($sUsername, $sApiKey) {
		$this->setUsername($sUsername);
		$this->setApiKey($sApiKey);
	}

	...

	/**
	 * shorten
	 *
	 * @param string $sLongUrl
	 * @return object with shortend url and hash
	 */
	public function shorten($sLongUrl)
	{
		return $this->process('shorten', urlencode($sLongUrl));
	}

	/**
	 * expand
	 *
	 * @param string $sShortUrl
	 * @return object with original url
	 */
	public function expand($sShortUrl)
	{
		return $this->process('expand', urlencode($sShortUrl));
	}

	...

	/**
	 * process, checks the action and returns the result
	 *
	 * @param string $sAction
	 * @param string $sParam
	 */
	private function process($sAction, $sUrlToParse)
	{
		// Check the url, if no http is present, add it
		if(strstr($sUrlToParse, 'http://') === false) {
			$sUrlToParse = 'http://'.$sUrlToParse;
		}

		// Compose action url
		$sParam = ($sAction == 'shorten') ? 'longUrl='.$sUrlToParse : 'shortUrl='.$sUrlToParse;
		$sActionUrl = $this->sApiUrl.$sAction.'?version='.$this->sApiVersion.'&'.$sParam.'&login='.$this->sUsername.'&apiKey='.$this->sApiKey.'&format=xml';

		// Get data
		libxml_use_internal_errors(true);
		$oData = simplexml_load_file($sActionUrl);
		if(!$oData) {
			throw new Exception('Api returned an invalid response!');
		}

		// Check for errors
		if($oData->statusCode == 'ERROR') {
			throw new Exception($oData->errorCode.': '.$oData->errorMessage);
		}

		// Build result object
		$oResult				= new stdClass();
		$oResult->requestedUrl	= $sUrlToParse;
		$oResult->resultUrl	= (string)$oData->results->nodeKeyVal->shortUrl;
		$oResult->hash		= (string)$oData->results->nodeKeyVal->hash;

		return $oResult;
	}

The reason why I build a result object is because of the fact that the server where the class is deployed doesn’t support JSON but JSON is also available as return format.

Furthermore, generated urls can be saved to our Bitly account history by adding an additional parameter to the url (history = 1). Another nice option of the API is to shorten the URL to a keyword, this can be achieved by sending the (keyword=your keyword) parameter along.

The complete API manual can be found at Google Code which also describes how to get click statistics of the shortened links.

Comments

982 responses to “Using the BitLy API to shorten urls”

  1. HaroldSHems Avatar
    HaroldSHems

    pharmacy online: cheap medicines online Australia – best Australian pharmacies

  2. Johnnyfuede Avatar
    Johnnyfuede

    Irish Pharma Finder: Irish Pharma Finder – discount pharmacies in Ireland

  3. Hermanengam Avatar
    Hermanengam

    best online pharmacy promo codes for online drugstores best online pharmacy

  4. Edmundexpon Avatar
    Edmundexpon

    discount pharmacies in Ireland

  5. Haroldovaph Avatar
    Haroldovaph

    https://aussiemedshubau.com/# verified online chemists in Australia

  6. HaroldSHems Avatar
    HaroldSHems

    UK online pharmacies list: affordable medications UK – safe place to order meds UK

  7. Johnnyfuede Avatar
    Johnnyfuede

    best online pharmacy: buy medications online safely – trusted online pharmacy USA

  8. Hermanengam Avatar
    Hermanengam

    online pharmacy australia pharmacy discount codes AU cheap medicines online Australia

  9. Edmundexpon Avatar
    Edmundexpon

    best Irish pharmacy websites

  10. HaroldSHems Avatar
    HaroldSHems

    affordable medications UK: non-prescription medicines UK – best UK pharmacy websites

  11. Johnnyfuede Avatar
    Johnnyfuede

    trusted online pharmacy USA: best online pharmacy – trusted online pharmacy USA

  12. Hermanengam Avatar
    Hermanengam

    compare online pharmacy prices trusted online pharmacy USA online pharmacy reviews and ratings

  13. Edmundexpon Avatar
    Edmundexpon

    best Irish pharmacy websites

  14. HaroldSHems Avatar
    HaroldSHems

    pharmacy delivery Ireland: discount pharmacies in Ireland – pharmacy delivery Ireland

  15. Haroldovaph Avatar
    Haroldovaph

    https://irishpharmafinder.shop/# online pharmacy ireland

  16. Johnnyfuede Avatar
    Johnnyfuede

    UK online pharmacies list: affordable medications UK – Uk Meds Guide

  17. Hermanengam Avatar
    Hermanengam

    trusted online pharmacy Ireland pharmacy delivery Ireland affordable medication Ireland

  18. Edmundexpon Avatar
    Edmundexpon

    pharmacy delivery Ireland

  19. HaroldSHems Avatar
    HaroldSHems

    pharmacy delivery Ireland: Irish Pharma Finder – best Irish pharmacy websites

  20. Johnnyfuede Avatar
    Johnnyfuede

    pharmacy delivery Ireland: affordable medication Ireland – trusted online pharmacy Ireland

  21. Hermanengam Avatar
    Hermanengam

    legitimate pharmacy sites UK best UK pharmacy websites UkMedsGuide

  22. Edmundexpon Avatar
    Edmundexpon

    Irish online pharmacy reviews

  23. HaroldSHems Avatar
    HaroldSHems

    online pharmacy ireland: irishpharmafinder – pharmacy delivery Ireland

  24. Johnnyfuede Avatar
    Johnnyfuede

    discount pharmacies in Ireland: Irish Pharma Finder – buy medicine online legally Ireland

  25. Haroldovaph Avatar
    Haroldovaph

    https://safemedsguide.com/# best pharmacy sites with discounts

  26. Hermanengam Avatar
    Hermanengam

    pharmacy online pharmacy online pharmacy discount codes AU

  27. HaroldSHems Avatar
    HaroldSHems

    discount pharmacies in Ireland: top-rated pharmacies in Ireland – top-rated pharmacies in Ireland

  28. Edmundexpon Avatar
    Edmundexpon

    best Irish pharmacy websites

  29. Johnnyfuede Avatar
    Johnnyfuede

    online pharmacy ireland: Irish Pharma Finder – Irish Pharma Finder

  30. JamesOdodo Avatar
    JamesOdodo

    miglior farmacia online con sconti: farmacie senza ricetta online – acquisto farmaci a domicilio Italia

  31. OscarPuddy Avatar
    OscarPuddy

    Rabatte Apotheke online: Generika online kaufen Deutschland – online apotheke

  32. Juliusbuith Avatar
    Juliusbuith

    Generika online kaufen Deutschland Preisvergleich Online-Apotheken Deutschland Generika online kaufen Deutschland

  33. JamesOdodo Avatar
    JamesOdodo

    acquisto farmaci a domicilio Italia: ScegliFarmacia – top farmacia online

  34. OscarPuddy Avatar
    OscarPuddy

    farmacia online Espana: Tu Farmacia Top – comprar medicamentos online sin receta

  35. Juliusbuith Avatar
    Juliusbuith

    online apotheke zuverlässige Online-Apotheken Rabatte Apotheke online

  36. JamesOdodo Avatar
    JamesOdodo

    Pharma Classement: liste pharmacies en ligne fiables – meilleures pharmacies en ligne françaises

  37. BruceMus Avatar
    BruceMus

    https://apothekenradar.shop/# Preisvergleich Online-Apotheken Deutschland

  38. OscarPuddy Avatar
    OscarPuddy

    liste pharmacies en ligne fiables: codes promo pharmacie web – meilleures pharmacies en ligne francaises

  39. Juliusbuith Avatar
    Juliusbuith

    ScegliFarmacia ScegliFarmacia farmacie senza ricetta online

  40. JamesOdodo Avatar
    JamesOdodo

    ScegliFarmacia: farmacia online – ScegliFarmacia

  41. BruceMus Avatar
    BruceMus

    http://apothekenradar.com/# Rabattcode für Internetapotheke

  42. OscarPuddy Avatar
    OscarPuddy

    acheter medicaments en ligne livraison rapide: medicaments generiques en ligne pas cher – medicaments sans ordonnance en ligne

  43. Juliusbuith Avatar
    Juliusbuith

    top farmacia online farmacia online Italia Scegli Farmacia

  44. JamesOdodo Avatar
    JamesOdodo

    Rabattcode für Internetapotheke: Rabatte Apotheke online – zuverlässige Online-Apotheken

  45. OscarPuddy Avatar
    OscarPuddy

    classifica farmacie online: comprare medicinali online senza ricetta – farmacie senza ricetta online

  46. JerryWet Avatar
    JerryWet

    https://apothekenradar.shop/# Rabattcode fur Internetapotheke

Leave a Reply

Your email address will not be published. Required fields are marked *