URL Shortener
axios.get("https://api.shrtco.de/v2/shorten?url=" + encodeURIComponent(originalUrl)) .then(function(response) { var data = response.data; if (data.ok) { var shortUrl = data.result.full_short_link; resultDiv.innerHTML = "
Shortened URL: " + shortUrl + "
"; } else { resultDiv.innerHTML = "Error occurred while shortening the URL.
"; } }) .catch(function(error) { resultDiv.innerHTML = "Error occurred while shortening the URL.
"; }); }
No comments:
Post a Comment