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

3,772 responses to “Using the BitLy API to shorten urls”

  1. syq.im Avatar

    References:

    Blackjacks elgin

    References:
    http://gitea.mikarsoft.com/margarettedenn

  2. www.ituac.com Avatar

    References:

    Microgaming online casinos

    References:
    https://git.game-dev.space/aureliofosbery

  3. Thomasgow Avatar
    Thomasgow

    AccessBridge: AccessBridge Pharmacy – mexican pharmacy menu

  4. kition.mhl.tuc.gr Avatar

    References:

    Riverwind casino norman ok

    References:
    https://dotvdo.com/@kindrahenschke?page=about

  5. git.smart-tool.jp Avatar

    References:

    Wild rose casino clinton iowa

    References:
    https://eduback.com/@marlawaring06?page=about

  6. www.kingspalace.net Avatar

    References:

    Ameristar casino st charles

    References:
    http://gitea.mikarsoft.com/margarettedenn

  7. MichaelBeeva Avatar
    MichaelBeeva

    https://accessbridgepharmacy.com/# AccessBridge Pharmacy

  8. Peterwoxia Avatar
    Peterwoxia

    SteadyMeds: canada drugs – SteadyMeds pharmacy

  9. MichaelGab Avatar
    MichaelGab

    https://formulinepharmacy.com/# pharmacy no prescription required

  10. Marvinprilk Avatar
    Marvinprilk

    pharmacies in canada that ship to the us SteadyMeds SteadyMeds

  11. Peterwoxia Avatar
    Peterwoxia

    pharmacy websites: top 10 pharmacies in india – best rx pharmacy online

  12. Thomasgow Avatar
    Thomasgow

    legit online pharmacy: FormuLine Pharmacy – best mail order pharmacy

  13. MichaelBeeva Avatar
    MichaelBeeva

    http://formulinepharmacy.com/# online pharmacy no prescription needed

  14. MichaelGab Avatar
    MichaelGab

    https://accessbridgepharmacy.shop/# legitimate mexican pharmacy online

  15. Peterwoxia Avatar
    Peterwoxia

    SteadyMeds pharmacy: SteadyMeds – SteadyMeds pharmacy

  16. Thomasgow Avatar
    Thomasgow

    the canadian pharmacy: SteadyMeds – SteadyMeds

  17. Peterwoxia Avatar
    Peterwoxia

    AccessBridge Pharmacy: AccessBridge – AccessBridge Pharmacy

  18. MichaelBeeva Avatar
    MichaelBeeva

    http://steadymedspharmacy.com/# canadian pharmacies shipping to usa

  19. Marvinprilk Avatar
    Marvinprilk

    SteadyMeds SteadyMeds SteadyMeds

  20. MichaelGab Avatar
    MichaelGab

    http://steadymedspharmacy.com/# SteadyMeds pharmacy

  21. Peterwoxia Avatar
    Peterwoxia

    SteadyMeds pharmacy: safe canadian pharmacy – canada pharmacy reviews

  22. Thomasgow Avatar
    Thomasgow

    reputable online pharmacy no prescription: FormuLine Pharmacy – foreign online pharmacy

  23. MichaelGab Avatar
    MichaelGab

    https://accessbridgepharmacy.com/# AccessBridge Pharmacy

  24. Peterwoxia Avatar
    Peterwoxia

    mexican mail order pharmacy: medications can i buy mexico – AccessBridge

  25. Marvinprilk Avatar
    Marvinprilk

    AccessBridge AccessBridge mexican pharmacy menu

  26. MichaelGab Avatar
    MichaelGab

    https://formulinepharmacy.com/# new pharmacy online

  27. Thomasgow Avatar
    Thomasgow

    safe online pharmacies in canada: SteadyMeds – SteadyMeds pharmacy

  28. Peterwoxia Avatar
    Peterwoxia

    medstore online pharmacy: FormuLine Pharmacy – online pharmacies

  29. MichaelBeeva Avatar
    MichaelBeeva

    https://formulinepharmacy.shop/# no prescription needed pharmacy

  30. MichaelGab Avatar
    MichaelGab

    http://formulinepharmacy.com/# medicine online order

  31. Peterwoxia Avatar
    Peterwoxia

    SteadyMeds: SteadyMeds – pet meds without vet prescription canada

  32. Thomasgow Avatar
    Thomasgow

    legal online pharmacies in the us: indian pharmacy – worldwide pharmacy

  33. Marvinprilk Avatar
    Marvinprilk

    п»їinternational drug mart Online medicine order express scripts mail order pharmacy

  34. Peterwoxia Avatar
    Peterwoxia

    us pharmacy no prescription: FormuLine Pharmacy – foreign online pharmacy

  35. MichaelGab Avatar
    MichaelGab

    https://steadymedspharmacy.com/# legal canadian pharmacy online

  36. Thomasgow Avatar
    Thomasgow

    best online pharmacy no prescription: FormuLine Pharmacy – best online pharmacy

  37. Peterwoxia Avatar
    Peterwoxia

    best rx pharmacy online: indianpharmacy com – medicine online order

  38. MichaelBeeva Avatar
    MichaelBeeva

    http://formulinepharmacy.com/# legitimate online pharmacy

  39. MichaelGab Avatar
    MichaelGab

    https://formulinepharmacy.com/# reputable overseas online pharmacies

Leave a Reply

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