Non-official API for Filmweb.pl
Uwaga! Na chwilę obecną prezentowana tu metoda logowania już nie działa. W przygotowaniu jest nowa apka! Szukam beta testerów z >5000 zapisanych filmów na FW. Aktualnie dostępne są formaty json, txt i sqlite.
- Highly configurable via an external configuration file
- Advanced PHP error handling
- Supports PHP CLI mode
$ composer require orkan/filmweb-api
<?php
use Orkan\Filmweb\Filmweb;
use Orkan\Filmweb\Api\Method\isLoggedUser;
// Login to Filmweb
$filmweb = new Filmweb( $login, $password );
$api = $filmweb->getApi();
// Get user info
$api->call( 'isLoggedUser' );
$user = $api->getData();
$userId = $user[ isLoggedUser::USER_ID ];
// Get a list of voted films
$api->call( 'getUserFilmVotes', array( $userId ) );
$films = $api->getData();
// ...
print_r( $films );
This API library works with PHP 7.2 or above
Orkan - orkans@gmail.com - https://github.com/orkan
This project is licensed under the MIT License - see the LICENSE.md file for details