Class for bit.ly api

1.0.0 2019-03-18 18:45 UTC

This package is auto-updated.

Last update: 2024-04-19 10:05:55 UTC


README

Features

  • v1.0.0 Create class.

Example of use

Install: composer require rafael.paulino/bitly

<?php
include 'BitlyApi.php';

$bitly = new BitlyApi('yourloginname','yourapisecret');

$link = $bitly->getLink('http://rafapaulino.com');

echo '<pre>';
var_dump($link);