Coder Social home page Coder Social logo

url_shortner's Introduction

URL Shortner

Live app on heroku :
base_url: https://sandeep-urlshortner.herokuapp.com/

Create short_code for long URL

[POST] <base_url>/urls/

request body

{
"url" : "https://google.com"\ }

response body

[200] {
"url": "https://google.com",\ "short_code": "0",
"created_at": "2021-12-05T19:45:37.639376Z",
"updated_at": "2021-12-05T19:45:37.639323Z",
"count": 0,
"hourly_hits": 0
}
[400]
{
"message": "Invalid url"
}

Get details of any short code

[GET] <base_url>/urls/<short_code>

response body

[200]
{
"url": "https://google.com",\ "short_code": "0",
"created_at": "2021-12-05T19:45:37.639376Z",
"updated_at": "2021-12-05T19:45:37.639323Z",
"count": 5,
"hourly_hits": 3
}
[400]
{
"message": "Something went wrong"
}

Redirect to URL

[GET] <base_url>/<short_code>

It should redirect to the original url

Search all the Urls for given keyword

[GET] <base_url>/urls/search/?keyword=<search_key>

This API will return list of urls which contains the given keyword

response body

[200]
[
{
"url": "https://google.com",
"short_code": "0",
"created_at": "2021-12-05T19:45:37.639376Z",
"updated_at": "2021-12-05T19:45:37.639323Z",
"count": 1,
"hourly_hits": 1
},
{
"url": "https://googlefacebook.com",
"short_code": "2",
"created_at": "2021-12-05T20:07:33.604457Z",
"updated_at": "2021-12-05T20:07:33.604395Z",
"count": 0,
"hourly_hits": 0
}
]

url_shortner's People

Contributors

skm14747 avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.