sineverba/bitly-php-api-wrapper
Composer 安装命令:
composer require sineverba/bitly-php-api-wrapper
包简介
PHP Wrapper for APIv4 Bit.ly
README 文档
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!
| CI / CD | Status |
|---|---|
| Packagist | |
| Semaphore CI | |
| Scrutinizer | |
| Scrutinizer | |
| Scrutinizer | |
| Codecov | |
| StyleCI | |
| Coveralls | |
| CircleCI | |
| Sonarcloud |
Install
$ composer require sineverba/bitly-php-api-wrapper
Usage
- Get your Generic Access Token from Bit.ly. See also https://support.bitly.com/hc/en-us/articles/230647907-How-do-I-find-my-OAuth-access-token-
<?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.
统计信息
- 总下载量: 1.33k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 2
- 点击次数: 2
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2019-03-14