Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/mozillazg/ShortURL

A URL Shortener Site 短网址生成网站(web.py)
https://github.com/mozillazg/ShortURL

Last synced: 6 days ago
JSON representation

A URL Shortener Site 短网址生成网站(web.py)

Awesome Lists containing this project

README

        

# shorturl

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

## Features

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

## Demo

## API

Long -> Short

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

Examples:

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

Short -> Long

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

Examples:

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