PHP code example of amgrade / notion-api

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'];



declare(strict_types=1);

use AMgrade\NotionApi\NotionClient;

.notion.com/docs/authorization
$token = 'secret_XXXXXXX';
$notionVersion = '2022-06-28';

$client = new NotionClient($token, $notionVersion);

$me = $client->user()->me();

$pages = $client->search()->search([
    'filter' => [
        'value' => 'page',
        'property' => 'object',
    ],
]);

$databases = $client->search()->search([
    'filter' => [
        'value' => 'database',
        'property' => 'object',
    ],
]);