API Projects
URL Shortener Microservice
User Story:- I can POST to
/api/shorturl/new
and I will receive a shortened URL in the JSON response. Example : {"original_url": "www.google.com", "short_url": 1}
- If I pass an invalid URL that does not follow the http(s)://www.example.com(/more/routes) format, the JSON response will contain an error like
{"error": "Invalid address, verify the protocol and address have been input correctly"}
- When I visit the shortened URL, it will redirect me to my original link