PHP code example of rainbowshaggy / ritoauth

1. Go to this page and download the library: Download rainbowshaggy/ritoauth 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/ */

    

rainbowshaggy / ritoauth example snippets


use RainbowShaggy\RitoAuth\RiotAuth;
use RainbowShaggy\RitoAuth\RiotAuthenticationException;

$riotAuth = new RiotAuth(["username" => "RiotUsername",
                          "password" => "RiotPassword"]);

try {
    if ($riotAuth->authenticate()) {
        print $riotAuth->accessToken;
        print $riotAuth->entitlements;
        print $riotAuth->tokenExpiration;
    }
} catch (RiotAuthenticationException $e) {
    print $e;
}