badams / google-url

[READONLY] :cyclone: Google URL Shortener for PHP

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Software License Build Status Coverage Status Quality Score

GoogleUrl

An easy to use PHP implementation of Google's URL Shortener API

This project aims provide an easy to use implementation of the Google URL shortener API for PHP developers.

Installation

Install badams/google-url using Composer.

$ composer require badams/google-url

Basic Usage

use badams\GoogleUrl\GoogleUrl;

$url = new GoogleUrl('YOUR_API_KEY_HERE');

// Shorten
echo $url->shorten('https://github.com')->id;
> https://goo.gl/un5E

// Expand
echo $url->expand($short->id)->longUrl;
> https://github.com;

License

GoogleUrl is open-sourced software licensed under the MIT License (MIT). Please see LICENSE for more information.

About

[READONLY] :cyclone: Google URL Shortener for PHP

License:MIT License


Languages

Language:PHP 100.0%