| Crates.io | linkr |
| lib.rs | linkr |
| version | 0.2.0 |
| created_at | 2019-01-28 05:06:29.697492+00 |
| updated_at | 2019-03-04 08:09:41.799384+00 |
| description | Lightweight self-hosted personal link shortening and renaming service |
| homepage | |
| repository | https://github.com/edward-shen/linkr |
| max_upload_size | |
| id | 111042 |
| size | 70,306 |
I made linkr because I wanted a self-hosted solution for url shortening but all I found were implementations in PHP. The end goal is something as robust as existing solutions but written in safe Rust, with an emphasis on RESTful APIs first.
With no authorization:
# Creating a link
curl -XPOST -d "origin=hello&dest=https://google.com&password=potato" your-domain.com/api/link
# Deleting a link
curl -XDELETE -d "origin=hello&password=potato" your-domain/api/link
Pre-shared key (requires timestamp hashing message with PSK):
# Creating a link
curl -XPOST -d "origin=asdff&dest=hosd&ts=1551681791&hash=a84ee951112f89feaa34fe32d052c17187edbc2fb7ec35dfe710d06b5b17ad05" localhost:8000/api/link
# Deleting a link
curl -XDELETE -d "origin=asdf&ts=1551681861&hash=155b46c17892125e50a5284e916b8fee2f039b7481dd1ba16b117d80c6ffbd26" localhost:8000/api/link
Please see the docs to learn how to get started.