Skip to content

Latest commit

 

History

History
19 lines (14 loc) · 726 Bytes

README.md

File metadata and controls

19 lines (14 loc) · 726 Bytes

Google URL Shortener

Build Statuscodecov

A java library for Google URL Shortener

How to use

public class Example {
    
    public static void main(String... args) {
        GoogleURLShortener shortener = new GoogleURLShortener();
        String longUrl = "https://github.com/io-sgr/urlshortener-google";
        String shortUrl = shortener.shortenURL("<some_origin>", "<your_api_key>", longUrl);
        System.out.println(shortUrl);
    }
    
}