Skip to content
forked from mohistzh/tinyurl

A URL shortening web service, which provides short aliases for redirection of long URLs.

Notifications You must be signed in to change notification settings

xpcomrade/tinyurl

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

30 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

TinyURL service

TinyURL is a URL shortening web service, which provides short aliases for redirection of long URLs.

Example

The service provides two Web APIs to shorten or recover url by settings. The decorated url uses 62-base characters(a-z,A-Z,0-9) as their fundamental digitals which means it supports 916,132,832 links with 5 digitals, no worries about the range.

URL shortening

curl -d 'url=https://news.google.com/?hl=en-PH' -H 'Content-Type:application/x-www-form-urlencoded' localhost:8964/shorten | json_pp
{
   "message" : "success",
   "data" : {
      "decoratedUrl" : "http://localhost:8964/1",
      "originalUrl" : "https://news.google.com/?hl=en-PH"
   },
   "status" : 0,
   "time" : "2019-12-06T08:35:37.171+0000"
}

URL recover

curl -d 'path=1' -H 'Content-Type:application/x-www-form-urlencoded' localhost:8964/recover | json_pp
{
   "status" : 0,
   "message" : "success",
   "data" : "https://news.google.com/?hl=en-PH",
   "time" : "2019-12-06T08:38:10.406+0000"
}

About

A URL shortening web service, which provides short aliases for redirection of long URLs.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Java 95.8%
  • TSQL 1.9%
  • HTML 1.9%
  • JavaScript 0.4%