sineverba/bitly-php-api-wrapper

PHP Wrapper for APIv4 Bit.ly

6.5.0 2024-01-11 11:35 UTC

This package is auto-updated.

Last update: 2024-11-20 13:31:45 UTC


README

The Bit.ly name is trademark of Bit.ly!

Simple PHP wrapper for the Bit.ly API V4.

Support PHP >= 5.6

If you like or use this project, star it!

Install

$ composer require sineverba/bitly-php-api-wrapper

Usage

<?php

require_once ('vendor/autoload.php');

use Bitlywrap\Auth\Auth;
use Bitlywrap\Adapter\Adapter;
use Bitlywrap\Wrapper\Wrapper;

$token = 'your_generic_access_token';

$auth = new Auth($token);
$adapter = new Adapter($auth);
$wrapper = new Wrapper($adapter);

$long_url = 'http://www.example.com';

$short_url = $wrapper->getShortLink($long_url);

echo $short_url; // http://bit.ly/2HzJUKT

Contributions

Contributions are welcome and will be fully credited.