epigra/steam-web-api
最新稳定版本:1.0.0
Composer 安装命令:
composer require epigra/steam-web-api
包简介
A wrapper library that allows you to send requests to Steam Web API implemented in PHP language
README 文档
README
A wrapper library that allows you to send requests to Steam Web API implemented in PHP Laravel Framework.
This library simply takes arguments from method call and uses GuzzleHttp to send request Steam Web API and returns the response as expected.
It requires minimum PHP 5.4 version.
Installation
You can easily install this package via Composer:
- Add
"epigra/steam-web-api": "1.0.0"to yourcomposer.jsonfile.
{
"require": {
"epigra/steam-web-api": "1.0.0"
}
}
-
Type
composer updateon Terminal -
Ready to use!
## Usage
- Add the following namespace to your file
use Epigra\SteamWebApi\Api\AbstractSteamAPI;
- Then, you need to initialize client with your Steam Web API credentials
AbstractSteamAPI::init('http://api.steampowered.com', 'YOUR_API_KEY', 'YOUR_RESPONSE_FORMAT');
Note : Response format can be either json or xml.
- Once you initialize, select your API module and then call the appropriate method.
Let say we would like to get player items, then following code block will be fine for that purpose
$appID = ApplicationIDs::TeamFortress2; $steamID = 76561197962033671; $response = IEconItemsAPI::getPlayerItems($appID, $steamID); var_dump($response);
More Info About Library
- As you may know, there are some modules of Steam Web API. These are all available in this library.
Here is the list of class names and their namespaces that you can use.
ISteamApps => 'Epigra\SteamWebApi\Api\ISteamApps'
ISteamEconomy => 'Epigra\SteamWebApi\Api\ISteamEconomy'
ISteamNews => 'Epigra\SteamWebApi\Api\ISteamNews'
ISteamRemoteStorage => 'Epigra\SteamWebApi\Api\ISteamRemoteStorage'
ISteamUser => 'Epigra\SteamWebApi\Api\ISteamUser'
ISteamUserStats => 'Epigra\SteamWebApi\Api\ISteamUserStats'
IPlayerService => 'Epigra\SteamWebApi\Api\IPlayerService'
ISteamWebAPIUtil => 'Epigra\SteamWebApi\Api\ISteamWebAPIUtil'
IEconItems => 'Epigra\SteamWebApi\Api\IEconItems'
- On the other hand, some of API calls require application ids. You can use Steam Application IDs via
ApplicationIDsclass underEpigra\SteamWebApi\Constantsnamespace.
List of applications and their ids provided by the library:
CounterStrikeBeta = 260;
CounterStrikeGlobalOffensiveBeta = 710;
TeamFortress2 = 440;
TeamFortress2PublicBeta = 520;
Dota2 = 570;
Dota2InternalTest = 620;
Dota2Beta = 205790;
Portal2 = 620;
Portal2Beta = 841;
e.g. You can easily get TeamFortress2 ID like following
ApplicationIDs::TeamFortress2;
-
This library is well documented and can be reached from
docs/directory. -
For more information Visit Steam Page.
LICENSE
Copyright 2014 Epigra
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
统计信息
- 总下载量: 33
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 14
- 点击次数: 2
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: Apache-2.0
- 更新时间: 2014-10-29