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

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

  1. RichardFap Avatar
    RichardFap

    trusted canadian pharmacy http://mhfapharm.com/# maple leaf pharmacy in canada

  2. RobertMumma Avatar

    UvaPharm: Uva Pharm – UvaPharm

  3. Hunteramato Avatar

    best online pharmacy india: buy prescription drugs from india – IsoIndiaPharm

  4. RichardFap Avatar
    RichardFap

    best canadian online pharmacy http://isoindiapharm.com/# IsoIndiaPharm

  5. RichardFap Avatar
    RichardFap

    reputable canadian pharmacy https://isoindiapharm.com/# IsoIndiaPharm

  6. RobertMumma Avatar

    MHFA Pharm: MHFA Pharm – MHFA Pharm

  7. RichardFap Avatar
    RichardFap

    my canadian pharmacy reviews https://isoindiapharm.xyz/# IsoIndiaPharm

  8. RobertMumma Avatar

    www canadianonlinepharmacy: MHFA Pharm – MhfaPharm

  9. RichardFap Avatar
    RichardFap

    global pharmacy canada https://isoindiapharm.com/# IsoIndiaPharm

  10. RobertMumma Avatar

    MHFA Pharm: MHFA Pharm – MhfaPharm

  11. ForestKef Avatar

    certified canadian international pharmacy MhfaPharm canadian online drugstore

  12. RichardFap Avatar
    RichardFap

    canadianpharmacy com https://mhfapharm.com/# ordering drugs from canada

  13. RobertMumma Avatar

    mexican pharmacy online: mexican mail order pharmacy – meds from mexico

  14. RichardFap Avatar
    RichardFap

    pharmacy com canada https://mhfapharm.com/# canada pharmacy reviews

  15. Charlescliny Avatar

    SocalAbortionPill: Cytotec 200mcg price – cytotec online

  16. Davidrulge Avatar

    buy generic propecia without insurance home BswFinasteride

  17. DouglasJag Avatar

    SocalAbortionPill: Socal Abortion Pill – п»їcytotec pills online

  18. Patricklib Avatar
    Patricklib

    reputable indian pharmacies https://uclametformin.com/# UclaMetformin

  19. Charlescliny Avatar

    Ucla Metformin: Ucla Metformin – Ucla Metformin

  20. Patricklib Avatar
    Patricklib

    world pharmacy india https://uclametformin.com/# metformin canadian pharmacy

  21. DouglasJag Avatar

    metformin online: where to get metformin in canada – metformin where to buy

  22. Charlescliny Avatar

    PMA Ivermectin: PmaIvermectin – PmaIvermectin

  23. Davidrulge Avatar

    buy abortion pills buy cytotec in usa cytotec online

  24. Patricklib Avatar
    Patricklib

    indian pharmacy online http://cytpremium.com/# buy cytotec over the counter

  25. DouglasJag Avatar

    Ucla Metformin: UclaMetformin – Ucla Metformin

  26. Charlescliny Avatar

    buy abortion pills: buy cytotec online fast delivery – SocalAbortionPill

  27. Patricklib Avatar
    Patricklib

    mail order pharmacy india https://pmaivermectin.com/# PMA Ivermectin

  28. Charlescliny Avatar

    buy ivermectin uk: PMA Ivermectin – PMA Ivermectin

  29. Davidrulge Avatar

    Socal Abortion Pill Socal Abortion Pill SocalAbortionPill

  30. DouglasJag Avatar

    SocalAbortionPill: SocalAbortionPill – SocalAbortionPill

  31. Patricklib Avatar
    Patricklib

    reputable indian pharmacies https://pmaivermectin.com/# PMA Ivermectin

  32. Charlescliny Avatar

    metformin 500 mg pill: UclaMetformin – metformin 300 mg daily

  33. Patricklib Avatar
    Patricklib

    buy medicines online in india http://cytpremium.com/# buy misoprostol over the counter

  34. DouglasJag Avatar

    buy cheap metformin: Ucla Metformin – UclaMetformin

  35. Charlescliny Avatar

    buy cheap propecia prices: BswFinasteride – BSW Finasteride

  36. Patricklib Avatar
    Patricklib

    indian pharmacy online https://socalabortionpill.xyz/# Socal Abortion Pill

  37. Davidrulge Avatar

    Abortion pills online buy abortion pills SocalAbortionPill

  38. Charlescliny Avatar

    UclaMetformin: where to buy metformin tablets – can i buy metformin over the counter in uk

  39. Patricklib Avatar
    Patricklib

    online shopping pharmacy india http://bswfinasteride.com/# propecia tablets

  40. DouglasJag Avatar

    BswFinasteride: propecia without a prescription – BSW Finasteride

  41. Charlescliny Avatar

    can humans take animal ivermectin: ivermectin 0.5 lotion india – stromectol prioderm

Leave a Reply

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