PHP code example of minecraftjp / minecraftjp-php-sdk
1. Go to this page and download the library: Download minecraftjp/minecraftjp-php-sdk 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/ */
minecraftjp / minecraftjp-php-sdk example snippets
$minecraftjp = new MinecraftJP(array(
'clientId' => 'YOUR_CLIENT_ID',
'clientSecret' => 'YOUR_CLIENT_SECRET',
));
// Get User
$user = $minecraftjp->getUser();
// Get Access Token
$accessToken = $minecraftjp->getAccessToken();
// Get login url for redirect
$loginUrl = $minecraftjp->getLoginUrl();
echo '<a href="' . $loginUrl . '">Login with minecraft.jp</a>';