GitXplorerGitXplorer
a

my-url-shortener-service

public
0 stars
0 forks
56 issues

Commits

List of commits on branch master.
Unverified
85cf7fd48e6509407b08156292db59aa97c843a1

🎭🌦 Checkpoint

committed 6 years ago
Unverified
4c0b6e70b6178c4ce18e8850041b96d3e99fa9d4

πŸš†πŸŸ Checkpoint

committed 6 years ago
Unverified
fca2f231d13ce0999436aa27e87f404a5961e0e1

πŸ‘¨β€β€οΈβ€πŸ‘¨πŸ¨ Checkpoint

committed 6 years ago
Unverified
06f51fea4d4c4bbdb6010b59b4f1a9a8226fa5ef

πŸ—ΌπŸ‘³ Checkpoint

committed 6 years ago
Unverified
1b42224f98899eac2cdcd7339dfb5c044b2d9042

πŸŒƒπŸ“Ή Checkpoint

committed 6 years ago
Unverified
e6c8bed5a0bb3dc0d6f54db689b2ae4f22d65a6a

πŸšπŸŒ” Checkpoint

committed 6 years ago

README

The README file for this repository.

API Project: URL Shortener Microservice for freeCodeCamp

User Stories

  1. I can POST a URL to [project_url]/api/shorturl/new and I will receive a shortened URL in the JSON response. Example : {"original_url":"www.google.com","short_url":1}
  2. If I pass an invalid URL that doesn't follow the valid http(s)://www.example.com(/more/routes) format, the JSON response will contain an error like {"error":"invalid URL"}. HINT: to be sure that the submitted url points to a valid site you can use the function dns.lookup(host, cb) from the dns core module.
  3. When I visit the shortened URL, it will redirect me to my original link.

Creation Example:

POST [project_url]/api/shorturl/new - body (urlencoded) : url=https://www.google.com

Usage:

[this_project_url]/api/shorturl/3

Will redirect to:

http://forum.freecodecamp.com