Skip to content

mozillazg/ShortURL

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

35 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

shorturl

A URL shortener site powered by Python and web.py.

Features

  • Shorten URL.
  • QR Code.
  • Support all most URL scheme.

Demo

http:https://3sd.me

API

Long -> Short

URL: http:https://3sd.me/j/shorten
Method: POST
Parameters: url
Return: JSON

Examples:

$ curl 3sd.me/j/shorten -d "url=baidu.com"
{"shorten": "http:https://3sd.me/Jh8x3", "expand": "http:https://baidu.com"}

Short -> Long

URL: http:https://3sd.me/j/expand
Method: POST
Parameters: shorten
Return: JSON

Examples:

$ curl 3sd.me/j/expand -d "shorten=Jh8x3"
{"shorten": "http:https://3sd.me/Jh8x3", "expand": "http:https://baidu.com"}