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

2,195 responses to “Using the BitLy API to shorten urls”

  1. Davidles Avatar
    Davidles

    reddit canadian pharmacy: US Pharma Index – US Pharma Index

  2. Jeremygraix Avatar
    Jeremygraix

    https://ivermectinaccessusa.shop/# Ivermectin Access USA

  3. fkwiki.win Avatar

    References:

    Is human growth hormone a steroid

    References:
    fkwiki.win

  4. RandyStupt Avatar
    RandyStupt

    US Pharma Index generic viagra online canadian pharmacy US Pharma Index

  5. Josephscalt Avatar
    Josephscalt

    can you buy stromectol over the counter: Ivermectin Access USA – ivermectin lice oral

  6. ThomasLax Avatar
    ThomasLax

    https://sildenafilpriceguide.shop/# sildenafil over the counter

  7. Jeremygraix Avatar
    Jeremygraix

    https://uspharmaindex.shop/# ordering drugs from canada

  8. Davidles Avatar
    Davidles

    international online pharmacy: reputable canadian online pharmacy – online pharmacy cialis

  9. Josephscalt Avatar
    Josephscalt

    Ivermectin Access USA: ivermectin gel – Ivermectin Access USA

  10. ThomasLax Avatar
    ThomasLax
  11. atavi.com Avatar

    References:

    Dianabol pills for sale

    References:
    atavi.com

  12. Jeremygraix Avatar
    Jeremygraix

    http://sildenafilpriceguide.com/# Cheap generic Viagra online

  13. Josephscalt Avatar
    Josephscalt

    US Pharma Index: pharmacy mall – US Pharma Index

  14. cuwip.ucsd.edu Avatar

    References:

    Steroid alternatives reddit

    References:
    cuwip.ucsd.edu

  15. ThomasLax Avatar
    ThomasLax

    https://ivermectinaccessusa.shop/# ivermectin 3 mg tablet dosage

  16. Jeremygraix Avatar
    Jeremygraix

    https://sildenafilpriceguide.com/# Sildenafil Citrate Tablets 100mg

  17. Davidles Avatar
    Davidles

    Ivermectin Access USA: ivermectin 3mg tablets price – Ivermectin Access USA

  18. RandyStupt Avatar
    RandyStupt

    Ivermectin Access USA stromectol generic name Ivermectin Access USA

  19. Josephscalt Avatar
    Josephscalt

    Ivermectin Access USA: Ivermectin Access USA – stromectol over the counter

  20. Jeremygraix Avatar
    Jeremygraix
  21. ThomasLax Avatar
    ThomasLax

    https://ivermectinaccessusa.com/# Ivermectin Access USA

  22. Josephscalt Avatar
    Josephscalt

    canada pharmacy online: polish pharmacy online uk – safe canadian pharmacy

  23. Davidles Avatar
    Davidles

    US Pharma Index: canadian pharmacy world – best online foreign pharmacy

  24. Jeremygraix Avatar
    Jeremygraix
  25. ThomasLax Avatar
    ThomasLax

    http://uspharmaindex.com/# canada drug pharmacy

  26. Josephscalt Avatar
    Josephscalt

    Ivermectin Access USA: Ivermectin Access USA – ivermectin 200mg

  27. RandyStupt Avatar
    RandyStupt

    stromectol pills Ivermectin Access USA stromectol xr

  28. Jeremygraix Avatar
    Jeremygraix

    https://sildenafilpriceguide.shop/# Generic Viagra for sale

  29. ThomasLax Avatar
    ThomasLax

    https://uspharmaindex.shop/# my canadian pharmacy review

  30. Davidles Avatar
    Davidles

    Viagra online price: over the counter sildenafil – Buy Viagra online cheap

  31. Josephscalt Avatar
    Josephscalt

    online pharmacy without prescription: US Pharma Index – online pharmacy uk

  32. Jeremygraix Avatar
    Jeremygraix
  33. ThomasLax Avatar
    ThomasLax
  34. Josephscalt Avatar
    Josephscalt

    US Pharma Index: US Pharma Index – big pharmacy online

  35. Davidles Avatar
    Davidles

    US Pharma Index: canadian pharmacy in canada – US Pharma Index

  36. Jeremygraix Avatar
    Jeremygraix

    https://ivermectinaccessusa.com/# Ivermectin Access USA

  37. Josephscalt Avatar
    Josephscalt

    pharmacy shop: US Pharma Index – canadian compounding pharmacy

  38. ThomasLax Avatar
    ThomasLax

    https://ivermectinaccessusa.shop/# Ivermectin Access USA

  39. RandyStupt Avatar
    RandyStupt

    US Pharma Index canadian pharmacy meds review US Pharma Index

  40. Josephscalt Avatar
    Josephscalt

    US Pharma Index: US Pharma Index – US Pharma Index

  41. ThomasLax Avatar
    ThomasLax

    https://uspharmaindex.com/# cheapest online pharmacy india

  42. Davidles Avatar
    Davidles

    Ivermectin Access USA: Ivermectin Access USA – ivermectin 1% cream generic

  43. Jeremygraix Avatar
    Jeremygraix

    http://ivermectinaccessusa.com/# stromectol 6 mg dosage

  44. Josephscalt Avatar
    Josephscalt

    Ivermectin Access USA: stromectol price us – Ivermectin Access USA

Leave a Reply

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