1. Go to this page and download the library: Download coliving/laravel-reddit-api 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/ */
coliving / laravel-reddit-api example snippets
use RedditAPI;
//fetch top Reddit posts
RedditAPI::getTop();
//fetch top picture posts of Margot Robbie, limit to 100
RedditAPI::search('Margot Robbie ', null, 'top', null, 'pics', 100);