ferrysyahrinal/twifer
最新稳定版本:v2.2
Composer 安装命令:
composer require ferrysyahrinal/twifer
包简介
Simple PHP Library for Twitter API
README 文档
README
Simple PHP Library for Twitter API Standard v1.1 & Twitter API v2
- Coded with ❤️ by @senggolbaok
- Buy Me a Cigarette : https://trakteer.id/setandarisurga 🚬
Installation
Install with composer
composer require ferrysyahrinal/twifer
<?php require 'vendor/autoload.php'; use Twifer\API; $conn = new API('CONSUMER_KEY', 'CONSUMER_SECRET', 'OAUTH_TOKEN', 'OAUTH_TOKEN_SECRET');
Without composer
<?php require 'src/API.php'; use Twifer\API; $conn = new API('CONSUMER_KEY', 'CONSUMER_SECRET', 'OAUTH_TOKEN', 'OAUTH_TOKEN_SECRET');
Usage :
$conn->request(method, resource, parameter);
// Post tweet $parameter = ['status' => 'Hi World']; $req = $conn->request('POST', 'statuses/update', $parameter); print_r($req);
// Delete tweet $id = '1512864814338506753'; //id tweet $req = $conn->request('POST', 'statuses/destroy/' . $id); print_r($req);
// Get direct message $req = $conn->request('GET', 'direct_messages/events/list'); print_r($req);
// Fetch image direct message / save image in direct message $imgUrl = 'https://ton.twitter.com/i/ton/data/dm/1512867595292057605/1512867589323882496/_6uELIwA.png'; //img url in direct message $req = $conn->file($imgUrl); file_put_contents('saveImage.jpg', $req); //print_r(base64_encode($req));
// Lookup users $parameter = ['screen_name' => 'senggolbaok']; $req = $conn->request('GET', 'users/lookup', $parameter); print_r($req);
See more example : examples/
Read more : https://developer.twitter.com/en/docs/twitter-api/v1 to know other parameters.
Twitter API v2 calls : https://developer.twitter.com/apitools/api
License
This open-source software is distributed under the MIT License. See License
Contributing
All kinds of contributions are welcome.
- Bug reports.
- Fix bugs / add new features.
统计信息
- 总下载量: 12.72k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 17
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2022-04-09