shapecode / fut-api
FIFA WebApp API
Fund package maintenance!
nicklog
Liberapay
paypal.me/nloges
Installs: 428
Dependents: 0
Suggesters: 0
Security: 0
Stars: 44
Watchers: 18
Forks: 20
Open Issues: 12
Requires
- php: ~7.1
- ext-json: *
- guzzlehttp/guzzle: ^6.3
- php-http/client-common: ^2.0
- php-http/discovery: ^1.4
- php-http/guzzle6-adapter: ^2.0
- php-http/httplug: ^2.0
- php-http/logger-plugin: ^2.0
- php-http/message: ^1.7
- php-http/message-factory: ^1.0
- php-http/stopwatch-plugin: ^2.0
- psr/http-message: ^1.0
- psr/log: ^1.0
- shapecode/anticaptcha: ^1.0
- symfony/property-access: ^2.8|^3.0|^4.0
- symfony/stopwatch: ^2.8|^3.0|^4.0
- symfony/translation: ^2.8|^3.0|^4.0
- symfony/yaml: ^2.8|^3.0|^4.0
This package is auto-updated.
Last update: 2023-12-03 12:20:28 UTC
README
Manage your FIFA 20 Ultimate Team using this FIFA 20 Ultimate Team API. Written solely in PHP
Installing
The recommended way to install FIFA 20 WebApp API is through Composer.
composer require shapecode/fut-api "~20.0@dev"
Contribute
Don't be shy. Feel free to contribute and create pull-requests. There's a lot to do.
Usage
Login
Login parameters:
- email: [string] email used for logging into the FIFA 20 WebApp
- password: [string] password used for logging into the FIFA 20 WebApp
- platform: [string] pc/ps4/ps4/xbox/xbox360
- code: [string] email code for two-step verification (make sure to use string if your code starts with 0).
use FUTApi\Api\Core; use FUTApi\Exception\FutError; use FUTApi\Api\Authentication\Account; use FUTApi\Api\Authentication\Credentials; use FUTApi\Api\Authentication\Session; $credentials = new Credentials($email, $password, $platform); // if you already have a valid session $session = new Session($persona, $nucleus, $phishing, $session, $dob, $accessToken, $tokenType); // otherwise $session = null; $account = new Account($credentials, $session); $fut = new Core($account); try { $login = $fut->login($code); $session = $account->getSession(); } catch(FutError $e) { $reason = $e->getReason(); die("We have an error logging in: ".$reason); }
After you have initiated your first session, you can then use the API wthout logging in again using the session info.
Search
Optional parameters:
- min_price: [int] Minimal price.
- max_price: [int] Maximum price.
- min_buy: [int] Minimal buy now price.
- max_buy: [int] Maximum buy now price.
- level: ['bronze'/'silver'/gold'] Card level.
- start: [int] Start page number.
- category: ['fitness'/'?'] Card category.
- assetId: [int] assetId.
- defId: [int] defId.
- league: [int] League id.
- club: [int] Club id.
- position: [int?/str?] Position.
- zone: ['attacker'/'?'] zone.
- nationality: [int] Nation id.
- rare: [boolean] True for searching special cards.
- playStyle: [str?] playStyle.
- page_size: [int] Amount of cards on single page (changing this might be risky).
$options = []; $items = $fut->search($options);
Logout
Replicates clicking the Logout button.
$fut->logout();
License
GNU GPLv3