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,120 responses to “Using the BitLy API to shorten urls”

  1. vxtube.net Avatar

    References:

    Best legal steroids forum

    References:
    https://afribass.com/@debbrakwong989?page=about

  2. 47.115.223.229 Avatar

    References:

    What kind of steroids do bodybuilders use

    References:
    https://aviempnet.com/companies/welche-nebenwirkungen-hat-cbd/

  3. git.esen.gay Avatar

    References:

    Steroids definition

    References:
    https://silatdating.com/@karinemock529

  4. gitea.nkal.me Avatar

    References:

    Which of the following is true about natural steroids

    References:
    https://gitea.shizuka.icu/doloresmjk8666

  5. Michaelvop Avatar
    Michaelvop

    mexican pharmacies no prescription: BorderCare RX – reputable pharmacies in mexico

  6. 41.59.86.39 Avatar

    References:

    Buy steroids from canada

    References:
    https://viddertube.com/@garrettsomervi?page=about

  7. MatthewBom Avatar
    MatthewBom

    NorthCareRx: NorthCareRx – NorthCareRx

  8. https://nauticauruguay.com Avatar

    References:

    Muscle building tablets

    References:
    https://aprileaton.net/martinabrain6

  9. git.bp-web.app Avatar

    References:

    Steroid to gain weight

    References:
    http://171.244.15.53:3000/paigegranville

  10. Edwardkeync Avatar
    Edwardkeync

    https://primeindiameds.com/# legitimate canadian mail order pharmacy

  11. http://120.25.164.109 Avatar

    References:

    How do steroids work in the body

    References:
    https://whiskey.tangomedia.fr/@denesemickey62?page=about

  12. git.veraskolivna.net Avatar

    References:

    Oral steroids for sale online in usa

    References:
    https://clipbeans.com/@muhammadlongmo?page=about

  13. hunthub.com.au Avatar

    References:

    Taking steroids without working out

    References:
    https://romancefrica.com/@nanniechippind

  14. 47.105.50.196 Avatar

    References:

    What is npp steroid

    References:
    http://1.117.168.31:3002/benedictbrindl

  15. git.huwhy.cn Avatar

    References:

    Legal weight gain steroids

    References:
    https://aitune.net/carolynmannix

  16. focusedtruth.com Avatar

    References:

    Safest place to buy steroids

    References:
    http://223.71.122.54:3000/shelliebothwel

  17. 47.103.78.70 Avatar

    References:

    Spawn test booster

    References:
    https://git.vezpi.com/sheree77434933

  18. https://reruberrypi.rerurate.com/hermelindaharr Avatar

    References:

    Which of the following has been found to be a side effect of
    anabolic steroid use?

    References:
    https://chinami.com/@marquistms5354?page=about

  19. tageeapp.com Avatar

    References:

    Brosciencelife steroids

    References:
    http://47.104.60.158:7777/maik7510693855

  20. git.alderautomation.ca Avatar

    References:

    What is a possible side effect as a result of the presence of anabolic
    steroids in male users?

    References:
    http://122.116.190.233:3001/ajahalverson20

  21. http://39.101.170.62:9080/luannburbidge9 Avatar

    References:

    What do all steroids contain in their structure

    References:
    https://git.mauve.haus/samuel76478556

  22. 47.92.35.224 Avatar

    References:

    Legal steroids online to buy

    References:
    https://thewerffreport.com/@napoleon85b037?page=about

  23. gitea.lokach.ru Avatar

    References:

    Where to buy legit steroids online

    References:
    https://7yue.net/sidney9145029

  24. spinvai.com Avatar

    References:

    Gnc increase libido

    References:
    https://niqnok.com/erick19k065387

  25. 221.226.114.142 Avatar

    References:

    Is jay cutler on steroids

    References:
    http://117.72.61.28:5418/gingerbuford4

  26. https://www.meetgr.com/ Avatar

    References:

    2ahukewipubipvmvnahuy7p4khwr8cqaq4lyoanoecaeqfw|the best
    steroids for muscle growth

    References:
    https://dreamplacesai.de/georgiannafann

Leave a Reply

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