pixels/torn-api
Composer 安装命令:
composer require pixels/torn-api
包简介
A PHP wrapper around the Torn API
关键字:
README 文档
README
Installation
The preferred method of installation is via Composer.
composer require pixels/torn-api
Usage
There are services for all API endpoints. They all follow the same pattern as the example below.
$masterApiKey = 'masterApiKey'; // Used as a fallback if no key is specified in a request $selections = [\Torn\Services\UserService::BASIC]; $userId = 'someUserId'; $userApiKey = 'yourApiKey'; $useTornProxyByDefault = false; $forceTornProxy = true; // Allows you to use Torn Proxy for a specific request $httpClient = new GuzzleHttp\Client(); $client = new Torn\Client($httpClient, $masterApiKey, $useTornProxyByDefault); $userService = new Torn\Services\UserService($client); $user = $userService->fetch($userId, $selections, $userApiKey, $forceTornProxy);
统计信息
- 总下载量: 10
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 2
- 点击次数: 4
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2020-09-09