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

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

  1. ZacharyIneks Avatar
    ZacharyIneks
  2. Davidbluth Avatar
    Davidbluth

    viagra canada: Viagra online price – viagra canada

  3. Tristanced Avatar

    AeroMedsRx AeroMedsRx buy viagra here

  4. Kennethbex Avatar

    AeroMedsRx: buy Viagra online – Viagra Tablet price

  5. ZacharyIneks Avatar
    ZacharyIneks
  6. Davidbluth Avatar
    Davidbluth

    order viagra: AeroMedsRx – AeroMedsRx

  7. Tristanced Avatar

    BlueWaveMeds fast delivery Kamagra pills order Kamagra discreetly

  8. ZacharyIneks Avatar
    ZacharyIneks
  9. Davidbluth Avatar
    Davidbluth

    AeroMedsRx: AeroMedsRx – Buy Viagra online cheap

  10. Tristanced Avatar

    order Kamagra discreetly trusted Kamagra supplier in the US BlueWaveMeds

  11. Davidbluth Avatar
    Davidbluth

    online pharmacy for Kamagra: buy Kamagra online – buy Kamagra online

  12. Kennethbex Avatar

    Cheap generic Viagra: buy Viagra over the counter – AeroMedsRx

  13. Davidbluth Avatar
    Davidbluth

    cialis generic: Tadalafil price – EveraMeds

  14. Tristanced Avatar

    Blue Wave Meds Blue Wave Meds trusted Kamagra supplier in the US

  15. ZacharyIneks Avatar
    ZacharyIneks

    http://everameds.com/# Buy Tadalafil 20mg

  16. Davidbluth Avatar
    Davidbluth

    AeroMedsRx: AeroMedsRx – Cheap Viagra 100mg

  17. Tristanced Avatar

    Blue Wave Meds BlueWaveMeds online pharmacy for Kamagra

  18. ZacharyIneks Avatar
    ZacharyIneks

    https://everameds.xyz/# Cialis without a doctor prescription

  19. Kennethbex Avatar

    online pharmacy for Kamagra: online pharmacy for Kamagra – kamagra oral jelly

  20. Davidbluth Avatar
    Davidbluth

    Cialis over the counter: EveraMeds – Generic Cialis without a doctor prescription

  21. Tristanced Avatar

    Buy Tadalafil 5mg EveraMeds EveraMeds

  22. ZacharyIneks Avatar
    ZacharyIneks

    https://everameds.xyz/# п»їcialis generic

  23. Davidbluth Avatar
    Davidbluth

    kamagra: Blue Wave Meds – buy Kamagra online

  24. RobertMumma Avatar

    MHFA Pharm: MHFA Pharm – MhfaPharm

  25. RichardFap Avatar
    RichardFap

    canadian pharmacy antibiotics https://mhfapharm.xyz/# MHFA Pharm

  26. Hunteramato Avatar

    Online medicine home delivery: IsoIndiaPharm – india pharmacy

  27. ForestKef Avatar

    IsoIndiaPharm IsoIndiaPharm reputable indian online pharmacy

  28. RichardFap Avatar
    RichardFap

    cheapest pharmacy canada https://isoindiapharm.xyz/# Iso Pharm

  29. RobertMumma Avatar

    Uva Pharm: Uva Pharm – UvaPharm

  30. Hunteramato Avatar

    best mexican online pharmacy: Uva Pharm – pharmacy in mexico city

  31. RichardFap Avatar
    RichardFap

    buying from canadian pharmacies https://uvapharm.xyz/# order medicine from mexico

  32. RobertMumma Avatar

    MHFA Pharm: MHFA Pharm – legitimate canadian pharmacies

  33. RichardFap Avatar
    RichardFap

    canadian drugs https://mhfapharm.xyz/# canadian pharmacies

  34. RobertMumma Avatar

    IsoIndiaPharm: Iso Pharm – IsoIndiaPharm

  35. RichardFap Avatar
    RichardFap

    canadian mail order pharmacy https://uvapharm.com/# progreso, mexico pharmacy online

  36. RobertMumma Avatar

    MhfaPharm: MhfaPharm – MhfaPharm

  37. Hunteramato Avatar

    canadian pharmacy oxycodone: onlinecanadianpharmacy – MHFA Pharm

  38. RichardFap Avatar
    RichardFap

    www canadianonlinepharmacy http://mhfapharm.com/# MhfaPharm

  39. ForestKef Avatar

    MhfaPharm MhfaPharm MhfaPharm

Leave a Reply

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