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

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

  1. DanielLox Avatar

    over the counter sildenafil: ViagraNewark – Viagra Tablet price

  2. SteveMar Avatar
    SteveMar

    canada prescription https://viagranewark.com/# generic sildenafil

  3. Williamopete Avatar
    Williamopete

    Buy generic 100mg Viagra online Viagra without a doctor prescription Canada Viagra Newark

  4. JamesHow Avatar

    Ed Pills Afib: Ed Pills Afib – Ed Pills Afib

  5. DanielLox Avatar

    Sildenafil Citrate Tablets 100mg: Viagra online price – ViagraNewark

  6. SteveMar Avatar
    SteveMar

    canada prescriptions https://edpillsafib.com/# EdPillsAfib

  7. Williamopete Avatar
    Williamopete

    CorPharmacy reliable canadian pharmacy online pharmacy fungal nail

  8. JamesHow Avatar

    EdPillsAfib: Ed Pills Afib – pills for ed online

  9. DanielLox Avatar

    Viagra Newark: Viagra Newark – ViagraNewark

  10. SteveMar Avatar
    SteveMar

    cheapest canadian pharmacies https://viagranewark.xyz/# generic sildenafil

  11. Williamopete Avatar
    Williamopete

    ViagraNewark Viagra Newark viagra without prescription

  12. JamesHow Avatar

    Sildenafil Citrate Tablets 100mg: ViagraNewark – Viagra Newark

  13. SteveMar Avatar
    SteveMar

    safe online pharmacy https://edpillsafib.com/# Ed Pills Afib

  14. DanielLox Avatar

    safe online pharmacies: Cor Pharmacy – CorPharmacy

  15. Williamopete Avatar
    Williamopete

    CorPharmacy canadian pharmacy coupon code good pill pharmacy

  16. JamesHow Avatar

    Ed Pills Afib: EdPillsAfib – EdPillsAfib

  17. SteveMar Avatar
    SteveMar

    mail order prescription drugs from canada https://corpharmacy.xyz/# CorPharmacy

  18. DanielLox Avatar

    EdPillsAfib: Ed Pills Afib – EdPillsAfib

  19. Williamopete Avatar
    Williamopete

    ViagraNewark Viagra Newark Viagra generic over the counter

  20. JamesHow Avatar

    EdPillsAfib: EdPillsAfib – Ed Pills Afib

  21. SteveMar Avatar
    SteveMar

    perscription drugs without perscription http://corpharmacy.com/# CorPharmacy

  22. DanielLox Avatar

    Cor Pharmacy: CorPharmacy – Cor Pharmacy

  23. Philipjum Avatar
    Philipjum

    MassAntibiotics Mass Antibiotics Mass Antibiotics

  24. RichardCreab Avatar
    RichardCreab

    Uofm Sildenafil: UofmSildenafil – Uofm Sildenafil

  25. Uofmsipudge Avatar

    Av Tadalafil: Av Tadalafil – tadalafil 2.5 mg online india

  26. Philipjum Avatar
    Philipjum

    Penn Ivermectin PennIvermectin what is ivermectin used for

  27. Robertsoops Avatar
    Robertsoops
  28. ArthurTah Avatar
    ArthurTah

    https://massantibiotics.xyz/# buy antibiotics online

  29. RichardCreab Avatar
    RichardCreab

    best online doctor for antibiotics: buy amoxicillin online no prescription – over the counter antibiotics

  30. Uofmsipudge Avatar

    amoxicillin buy no prescription: Mass Antibiotics – cheapest antibiotics

  31. Philipjum Avatar
    Philipjum

    ivermectin and fluvoxamine how do i get ivermectin pig wormer ivermectin

  32. ArthurTah Avatar
    ArthurTah

    http://massantibiotics.com/# cheap amoxicillin 500mg

  33. Uofmsipudge Avatar

    generic sildenafil: UofmSildenafil – UofmSildenafil

  34. Philipjum Avatar
    Philipjum

    tadalafil 5mg tablets price AvTadalafil tadalafil 20 mg best price

  35. RichardCreab Avatar
    RichardCreab

    AvTadalafil: Av Tadalafil – AvTadalafil

  36. Uofmsipudge Avatar

    AvTadalafil: cheapest tadalafil us – AvTadalafil

  37. Philipjum Avatar
    Philipjum

    AvTadalafil Av Tadalafil AvTadalafil

  38. ArthurTah Avatar
    ArthurTah

    https://massantibiotics.com/# doxycycline without prescription

  39. instagram hacklink Avatar

    buy google hacklink services. Glad to be buy hacklink services.

  40. Robertsoops Avatar
    Robertsoops
  41. Philipjum Avatar
    Philipjum

    AvTadalafil tadalafil brand name in india Av Tadalafil

  42. RichardCreab Avatar
    RichardCreab

    buy tadalafil in usa: tadalafil online no prescription – AvTadalafil

Leave a Reply

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