1. Go to this page and download the library: Download amgrade/notion-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/ */
amgrade / notion-api example snippets
declare(strict_types=1);
use AMgrade\NotionApi\NotionAuthorizationClient;
.com';
$client = new NotionAuthorizationClient($clientId, $clientSecret, $redirectUri);
$url = $client->getAuthorizeUrl();
// Redirect user to the url
// After that exchange your "code" and get "access_token"
$response = $client->createToken('CODE');
$accessToken = $response['access_token'];