Staatsloterij Leiden loterij

  1. Hoe Speel Je Het Beste Roulette: Eeuwenlang accepteerden mensen goud en zilver als de beste substituten voor menselijke creativiteit en arbeid.
  2. Wat Te Doen In Casino - Hoewel het niet erg origineel is, helpt het wel bij het opnieuw instellen van de stemming.
  3. Gokken Voor Geld: Er zijn veel online casino's die gratis roulette spel te spelen voor degenen die willen proberen en testen en niet hun geld direct investeren.

Online gokkasten forum

Revolution Gokkast Online Spelen
Zolang je de voorwaarden van de bonussen goed kent en hier je eerste storting op aanpast, zal je ook bij het Play Club Casino een mooi welkomstbedrag ontvangen..
Makkelijke Casino Spellen
Welkom bonussen zijn meestal gratis spins en een bonus van de storting, en nieuwe spelers mogen hun gratis spins gebruiken op willekeurige of vooraf bepaalde slot machines.
Tot slot, de huidige multiplier wordt ook verhoogd tot 3x.

Nieuw casino The Hague

Hoe Werkt Een Casino
Zoals we al zeiden, zijn er veel thema's om uit te kiezen.
Bingo Online Spelen Tot 75
Het is een van de veiligste en meest betrouwbare manieren om online betalingen te doen.
Tsi Casino No Deposit Bonus

Sjoerd Maessen blog

PHP and webdevelopment

Using the BitLy API to shorten urls

with 208 comments

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.

Written by Sjoerd Maessen

December 4th, 2009 at 5:05 pm

Posted in API

Tagged with ,

208 Responses to 'Using the BitLy API to shorten urls'

Subscribe to comments with RSS or TrackBack to 'Using the BitLy API to shorten urls'.

  1. MichaelPione

    31 Oct 25 at 3:33 pm

  2. MichaelPione

    31 Oct 25 at 4:51 pm

  3. discount pharmacies in Ireland: Irish Pharma Finder – irishpharmafinder

    HaroldSHems

    31 Oct 25 at 4:53 pm

  4. pharmacy delivery Ireland [url=https://irishpharmafinder.com/#]top-rated pharmacies in Ireland[/url] discount pharmacies in Ireland

    Hermanengam

    31 Oct 25 at 5:48 pm

  5. MichaelPione

    31 Oct 25 at 6:13 pm

  6. cheap medicines online UK: online pharmacy – online pharmacy

    Johnnyfuede

    31 Oct 25 at 6:59 pm

  7. MichaelPione

    31 Oct 25 at 7:30 pm

  8. buy medicine online legally Ireland

    Edmundexpon

    31 Oct 25 at 7:47 pm

  9. MichaelPione

    31 Oct 25 at 8:46 pm

  10. pharmacy online: AussieMedsHubAu – verified pharmacy coupon sites Australia

    HaroldSHems

    31 Oct 25 at 9:03 pm

  11. http://irishpharmafinder.com/# irishpharmafinder

    Haroldovaph

    31 Oct 25 at 9:25 pm

  12. MichaelPione

    31 Oct 25 at 10:01 pm

  13. buy medicine online legally Ireland [url=http://irishpharmafinder.com/#]pharmacy delivery Ireland[/url] affordable medication Ireland

    Hermanengam

    31 Oct 25 at 10:29 pm

  14. MichaelPione

    31 Oct 25 at 11:14 pm

  15. discount pharmacies in Ireland: Irish Pharma Finder – best Irish pharmacy websites

    Johnnyfuede

    31 Oct 25 at 11:27 pm

  16. online pharmacy ireland

    Edmundexpon

    1 Nov 25 at 12:18 am

  17. MichaelPione

    1 Nov 25 at 12:31 am

  18. discount pharmacies in Ireland: best Irish pharmacy websites – online pharmacy

    HaroldSHems

    1 Nov 25 at 12:58 am

  19. MichaelPione

    1 Nov 25 at 1:45 am

  20. RouletteRogue

    1 Nov 25 at 2:08 am

  21. pharmacy online [url=https://aussiemedshubau.com/#]cheap medicines online Australia[/url] Australian pharmacy reviews

    Hermanengam

    1 Nov 25 at 2:55 am

  22. MichaelPione

    1 Nov 25 at 3:02 am

  23. best Irish pharmacy websites: discount pharmacies in Ireland – online pharmacy

    Johnnyfuede

    1 Nov 25 at 3:47 am

  24. MichaelPione

    1 Nov 25 at 4:14 am

  25. top-rated pharmacies in Ireland

    Edmundexpon

    1 Nov 25 at 4:43 am

  26. pharmacy discount codes AU: best Australian pharmacies – compare pharmacy websites

    HaroldSHems

    1 Nov 25 at 4:53 am

  27. MichaelPione

    1 Nov 25 at 5:26 am

  28. https://aussiemedshubau.shop/# compare pharmacy websites

    Haroldovaph

    1 Nov 25 at 6:06 am

  29. MichaelPione

    1 Nov 25 at 6:39 am

  30. MichaelPione

    1 Nov 25 at 7:51 am

  31. irishpharmafinder [url=http://irishpharmafinder.com/#]Irish Pharma Finder[/url] pharmacy delivery Ireland

    Hermanengam

    1 Nov 25 at 8:03 am

  32. affordable medications UK: online pharmacy – online pharmacy

    Johnnyfuede

    1 Nov 25 at 9:01 am

  33. best Australian pharmacies: Aussie Meds Hub – compare pharmacy websites

    HaroldSHems

    1 Nov 25 at 10:12 am

  34. MichaelPione

    1 Nov 25 at 10:18 am

  35. online pharmacy ireland

    Edmundexpon

    1 Nov 25 at 10:21 am

  36. MichaelPione

    1 Nov 25 at 11:31 am

  37. MichaelPione

    1 Nov 25 at 12:46 pm

  38. Aussie Meds Hub Australia [url=https://aussiemedshubau.com/#]AussieMedsHubAu[/url] verified pharmacy coupon sites Australia

    Hermanengam

    1 Nov 25 at 1:50 pm

  39. MichaelPione

    1 Nov 25 at 2:13 pm

  40. safe place to order meds UK: trusted online pharmacy UK – UkMedsGuide

    Johnnyfuede

    1 Nov 25 at 2:39 pm

  41. MichaelPione

    1 Nov 25 at 3:26 pm

  42. discount pharmacies in Ireland: top-rated pharmacies in Ireland – pharmacy delivery Ireland

    HaroldSHems

    1 Nov 25 at 3:37 pm

  43. Irish online pharmacy reviews

    Edmundexpon

    1 Nov 25 at 4:06 pm

  44. MichaelPione

    1 Nov 25 at 5:43 pm

  45. https://irishpharmafinder.shop/# affordable medication Ireland

    Haroldovaph

    1 Nov 25 at 6:59 pm

  46. MichaelPione

    1 Nov 25 at 6:59 pm

  47. trusted online pharmacy UK [url=https://ukmedsguide.com/#]non-prescription medicines UK[/url] legitimate pharmacy sites UK

    Hermanengam

    1 Nov 25 at 7:39 pm

  48. MichaelPione

    1 Nov 25 at 8:13 pm

  49. cheap medicines online UK: legitimate pharmacy sites UK – best UK pharmacy websites

    Johnnyfuede

    1 Nov 25 at 8:23 pm

  50. online pharmacy ireland: Irish Pharma Finder – irishpharmafinder

    HaroldSHems

    1 Nov 25 at 9:03 pm

Leave a Reply