UNPKG

jquery-url-shortner

Version:

jQuery plugin for Shortening URLs using Google URL shortener API.

64 lines (53 loc) 1.12 kB
jQuery-URL-shortener ==================== ##Overview Jquery URL Shortener plugin using Google URL Shortener API ###Setting Google API Key --- jQuery.urlShortener.settings.apiKey='YOUR_API_KEY___________'; ###Shorten a URL --- ````javascript jQuery.urlShortener({ longUrl: "http://hayageek.com/jquery-url-shortener/", success: function (shortUrl) { //shortUrl -> Shortened URL }, error: function(err) { alert(JSON.stringify(err)); } }); ```` ###Short URL to Long URL --- ````javascript jQuery.urlShortener({ shortUrl: shortUrlLink, success: function (longURL) { //longURL -> original URL }, error: function(err) { alert(JSON.stringify(err)); } }); ```` ###Get Short URL information (Analytics,Clicks) --- ````javascript jQuery.urlShortener({ shortUrl: shortUrlLink, projection: "FULL", success: function (info) { }, error: function(err) { alert(JSON.stringify(err)); } }); ```` Projection types: FULL,ANALYTICS_CLICKS,ANALYTICS_TOP_STRINGS ###Tutorial --- http://hayageek.com/jquery-url-shortener/