Shorty

Additional

Language
Java
Version
N/A
Created
Sep 17, 2018
Updated
Oct 29, 2018 (Retired)
Owner
TheBotBox
Contributor
TheBotBox
1
Activity
Badge
Generate
Download
Source code

Advertisement

URLShortener

A simple Java URL Shortener API for android

Contents

Features
Implementation
API Usage
Credits
License

Features

a). Simple java library for shortening URLs'.

Implementation

Library is available on JCenter, simply add the following line in your app build.gradle

implementation'the.bot.box:shorty:{latest-version}'

where {latest-version} corresponds to latest published version

API Usage

                 Shorty shorty = new Shorty.Builder()
                        .setURL("htttp:thebotbox.online)
                        .isLoader(true)
                        .build(mActivity);
                        
                 shorty.TLDR(new Shorty.Callback() {
                     @Override
                     public void shortURL(final String url) {
                      // result shortened url 
                     }

                     @Override
                     public void onError(String error) {
                  // error while url shortening 
                     }
                 });        

Credits

This java library is working on top of to.ly

License

Copyright (c) 2018 TheBotBox

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated 
documentation files (the "Software"), to deal in the Software without restriction, including without
limitation the rights to use, copy, 
modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to 
whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions 
of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED 
TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 
THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF 
CONTRACT, TORT OR OTHERWISE,ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS 
IN THE SOFTWARE.