Official UX9 URL Shortener API. Visit ux9.de for more Details.
composer require tobymaxham/ux9-api
There are different ways how to get your short URL. If you are using Laravel than try out laravel-junkies/url-shortener. It's an Laravel Package where you simply can use this:
$url = Shortener::short('https://example.com');$shortener = new TobyMaxham\Ux9\Shortener($url = null, $config = null, $format = 'json');
// set the API Token
$shortener->setToken('YOUR_API_TOKEN');Where $url can be a valid URL or an array containing URL's. The $format is the output/return format you specified. If you don't enter a format it will take the specified format defined in the configuration Array or the 'json' format.
$shortener->out();$shortener->short('http://maxham.de');
$shortener->short('http://github.com');Here you will always get the string of the short url.
// default = json, alternativ plain, array
$shortener->format($format);
$shortener->out($format);
$shortener->add($url);$config = [
'API_TOKEN' => 'YOUR_API_TOKEN',
'FORMAT' => 'plain',
];
$shortener = new TobyMaxham\Ux9\Shortener($url = null, $config);Please see CHANGELOG for more information on what has changed recently.
If you've found a bug regarding security please mail git@maxham.de instead of using the issue tracker.
The MIT License (MIT). Please see License File for more information.