devmachine / guzzle-rottentomatoes-client
This package is abandoned and no longer maintained.
No replacement package was suggested.
Guzzle client for RottenTomatoes API - http://developer.rottentomatoes.com.
1.0.1
2015-03-13 18:59 UTC
Requires
- php: >=5.4.0
- guzzlehttp/guzzle-services: ~0.5
Requires (Dev)
- phpunit/phpunit: ~4.5
This package is not auto-updated.
Last update: 2020-01-16 08:41:27 UTC
README
Guzzle client for TottenTomatoes API.
Description
A simple client for RottenTomatoes made with Guzzle 4. Guzzle Services is under heavy development, hence this client does not provide some handy features like Resource Iterators (pagination) existed in Guzzle 3.
Installation
This library can be installed using Composer. Add the following to your composer.json:
{ "require": { "devmachine/guzzle-rottentomatoes-client": "1.0.*" } }
Sample usage
use Devmachine\Guzzle\RottenTomatoes\RottenTomatoesClient; $client = RottenTomatoesClient::factory('<api-key>'); $result = $client->movies(['q' => 'Terminator 3']); var_dump($result['movies']);
Sample output:
array(1) {
[0] =>
array(13) {
'id' =>
string(5) "13049"
'title' =>
string(35) "Terminator 3 - Rise of the Machines"
'year' =>
int(2003)
'mpaa_rating' =>
string(1) "R"
'runtime' =>
int(109)
'critics_consensus' =>
string(112) "Although T3 never reaches the heights of the second movie, it is a welcome addition to the Terminator franchise."
'release_dates' =>
array(2) {
'theater' =>
string(10) "2003-12-31"
'dvd' =>
string(10) "2003-11-11"
}
'ratings' =>
array(4) {
'critics_rating' =>
string(5) "Fresh"
'critics_score' =>
int(70)
'audience_rating' =>
string(7) "Spilled"
'audience_score' =>
int(47)
}
'synopsis' =>
string(0) ""
'posters' =>
array(4) {
'thumbnail' =>
string(60) "http://content7.flixster.com/movie/10/94/47/10944773_mob.jpg"
'profile' =>
string(60) "http://content7.flixster.com/movie/10/94/47/10944773_pro.jpg"
'detailed' =>
string(60) "http://content7.flixster.com/movie/10/94/47/10944773_det.jpg"
'original' =>
string(60) "http://content7.flixster.com/movie/10/94/47/10944773_ori.jpg"
}
'abridged_cast' =>
array(5) {
...
}
'alternate_ids' =>
array(1) {
'imdb' =>
string(7) "0181852"
}
'links' =>
array(6) {
...
}
}
}
API methods
Please use interractive documentation to get list of available API endpoints and corresponding parameters. Below you can find the list of appropriate client methods.
use Devmachine\Guzzle\RottenTomatoes\RottenTomatoesClient; $client = RottenTomatoesClient::factory('<api-key>'); // Movies $client->movies(); $client->moviesBoxOffice(); $client->moviesOpening(); $client->moviesInTheaters(); $client->moviesUpcoming(); // Individual movie $client->movie(); $client->movieCast(); $client->movieClips(); $client->movieReviews(); $client->movieSimilar(); $client->movieAlias(); // DVDs $client->dvdsTopRentals(); $client->dvdsCurrentReleases(); $client->dvdsNewReleases(); $client->dvdsUpcoming(); // Lists $client->lists(); $client->listsMovies(); $client->listsDVDs();