PHP code example of palantirnet / rottentomatoes

1. Go to this page and download the library: Download palantirnet/rottentomatoes library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

palantirnet / rottentomatoes example snippets




use Guzzle\RottenTomatoes\RottenTomatoesClient;
use PalantirNet\RottenTomatoes\Connection;

$apikey = 'the API key from Rotten Tomatoes';

// You could use an alternate URI if you wanted to use a mock server or proxy
// or something like that.
$base_uri = 'http://api.rottentomatoes.com/api/public/v1.0.json';

$connection = new Connection(new RottenTomatoesClient($base_uri, array('apikey' => $apikey)));



$movie1 = $connection->getMovieById($rotten_tomatoes_id_of_a_movie);
$movie2 = $connection->getMovieByImdbId($imdb_id_of_a_movie);

$connection->getMoviebyImdbId(01234); // Don't do this!

$connection->getMoviebyImdbId('01234');

$movie = $connection->getMoviebyImdbId('01234');
$title = $movie->title();
$data = $movie->getData();