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

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

  1. Williamseelo Avatar
    Williamseelo

    Apotek pa nett sammenligning: Hvilket apotek pa nett er best i Norge – Hvilket apotek pa nett er best i Norge

  2. StephenLib Avatar
    StephenLib

    Kunder rankar bästa apotek online apoteket recept Apotek online jämförelse

  3. JosephCit Avatar
    JosephCit

    https://kortingapotheek.xyz/# online apotheek nederland zonder recept

  4. Williamseelo Avatar
    Williamseelo

    Rabattkod for apotek pa natet: Basta natapotek 2025 – apoteket recept

  5. GeorgeAlila Avatar
    GeorgeAlila
  6. JasonNergo Avatar
    JasonNergo

    Kundevurderinger av nettapotek: Rabatterte generiske medisiner – Hvilket apotek på nett er best i Norge

  7. StephenLib Avatar
    StephenLib

    Korting Apotheek Medicijnen zonder recept bestellen online apotheek nederland

  8. Williamseelo Avatar
    Williamseelo

    apotek pa nett: Nettapotek med rask frakt – Hvilket apotek pa nett er best i Norge

  9. GeorgeAlila Avatar
    GeorgeAlila

    http://tryggapotekguiden.com/# Tryggt apotek utan recept

  10. StephenLib Avatar
    StephenLib

    Bästa nätapotek 2025 Köp medicin utan recept Sverige Bästa nätapotek 2025

  11. JosephCit Avatar
    JosephCit

    https://mexmedsreview.com/# save on prescription drugs from Mexico

  12. Williamseelo Avatar
    Williamseelo

    Kundevurderinger av nettapotek: Rabatterte generiske medisiner – Rabatt Apotek

  13. StephenLib Avatar
    StephenLib

    apotek på nett Nettapotek med rask frakt apotek på nett

  14. Williamseelo Avatar
    Williamseelo

    Medicijnen zonder recept bestellen: online apotheek – Korting Apotheek

  15. StephenLib Avatar
    StephenLib

    Online apotheek vergelijken online apotheek Korting Apotheek

  16. Williamseelo Avatar
    Williamseelo

    apoteket rabattkod: apoteket rabattkod – apotek online sverige

  17. JosephCit Avatar
    JosephCit

    https://tryggapotekguiden.com/# Basta natapotek 2025

  18. GeorgeAlila Avatar
    GeorgeAlila
  19. StephenLib Avatar
    StephenLib

    Medicijnen zonder recept bestellen apotheek online online apotheek nederland

  20. Williamseelo Avatar
    Williamseelo

    mexican pharmacy: cheap branded meds without prescription – discount meds from Mexico online

  21. JasonNergo Avatar
    JasonNergo

    online apotheek nederland zonder recept: online apotheek – online apotheek nederland

  22. GeorgeAlila Avatar
    GeorgeAlila

    https://tryggapotekguiden.xyz/# apotek online sverige

  23. StephenLib Avatar
    StephenLib

    Online apotheek vergelijken online apotheek nederland KortingApotheek

  24. Williamseelo Avatar
    Williamseelo

    KortingApotheek: apotheek online – Online apotheek vergelijken

  25. JasonNergo Avatar
    JasonNergo

    apotek online sverige: Rabattkod för apotek på nätet – apotek online sverige

  26. JosephCit Avatar
    JosephCit

    http://tryggapotekguiden.com/# apoteket rabattkod

  27. GeorgeAlila Avatar
    GeorgeAlila

    https://tryggapotekguiden.xyz/# Kunder rankar bästa apotek online

  28. Curtisvax Avatar
    Curtisvax

    safe Indian generics for US patients: no prescription pharmacy India – doctor recommended Indian pharmacy

  29. JerryAmure Avatar
    JerryAmure

    canadian pharmacy online Doctor North Rx trusted Canadian generics

  30. Michaeldum Avatar
    Michaeldum

    https://drindiameds.xyz/# Indian pharmacy coupon codes

  31. Robertinvok Avatar
    Robertinvok

    trusted medical sources from India: DrIndiaMeds – no prescription pharmacy India

  32. LarryAMORA Avatar
    LarryAMORA

    Doctor North Rx affordable medications from Canada legitimate pharmacy shipping to USA

  33. Curtisvax Avatar
    Curtisvax

    mexican pharmacy: buying prescriptions in mexico – verified Mexican pharmacies USA delivery

  34. JerryAmure Avatar
    JerryAmure

    safe Canadian pharmacies for Americans DoctorNorthRx best online pharmacies Canada to USA

  35. Michaeldum Avatar
    Michaeldum
  36. Robertinvok Avatar
    Robertinvok

    doctor recommended Mexican pharmacy: safe medications from Mexico – verified Mexican pharmacies USA delivery

  37. Curtisvax Avatar
    Curtisvax

    generic medicine from Mexico: Mexico to USA pharmacy shipping – verified Mexican pharmacies USA delivery

  38. JerryAmure Avatar
    JerryAmure

    indian pharmacy Indian pharmacy coupon codes Indian pharmacy coupon codes

  39. Robertinvok Avatar
    Robertinvok

    affordable medications from Canada: canadian pharmacy online – doctor recommended Canadian pharmacy

  40. Michaeldum Avatar
    Michaeldum

    https://drindiameds.xyz/# safe Indian generics for US patients

  41. LarryAMORA Avatar
    LarryAMORA

    verified Indian drugstores verified Indian drugstores affordable Indian medications online

  42. JerryAmure Avatar
    JerryAmure

    Indian pharmacy coupon codes india pharmacy indian pharmacy

  43. Robertinvok Avatar
    Robertinvok

    mexican pharmacy: mexico pharmacy – generic medicine from Mexico

  44. Curtisvax Avatar
    Curtisvax

    generic medicine from Mexico: mexican pharmacy – verified Mexican pharmacies USA delivery

  45. Michaeldum Avatar
    Michaeldum

    http://drindiameds.com/# safe Indian generics for US patients

  46. Robertinvok Avatar
    Robertinvok

    DoctorNorthRx: trusted Canadian generics – canadian pharmacy

  47. JerryAmure Avatar
    JerryAmure

    doctor recommended Canadian pharmacy safe canadian pharmacies Doctor North Rx

  48. Curtisvax Avatar
    Curtisvax

    DrIndiaMeds: india pharmacy – verified Indian drugstores

  49. Michaeldum Avatar
    Michaeldum

    https://drmedsadvisor.xyz/# doctor recommended Mexican pharmacy

Leave a Reply

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