A client for popular jokes.one jokes API. Jokes one offers plenty on the jokes area Joke of the day, Knock Knock Jokes, Blonde Jokes, Chuck Norris and more.
This repository aims to collect different clients (php, python, swift, java, javascript etc) for jokes one API.
Use Composer to install the library.
$ composer require orthosie/jokes-api
use Jokes\One\RestClient;
$jorc = new RestClient();
$jo = $jorc->joke_of_the_day();
$joc = $jorc->joke_of_the_day_categories();
print_r($jo);
print_r($joc);
print "Limit : " . $jorc->rate_limit_limit();
print "Remaining : " . $jorc->rate_limit_remaining();