PHP code example of simonkub / oauth2-todoist

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

    

simonkub / oauth2-todoist example snippets


// configure and create client
$client = new Simonkub\OAuth2\Client\Todoist([
    "clientId" => "CLIENT_ID",
    "clientSecret" => "CLIENT_SECRET",
    "redirectUri" => "REDIRECT_URI"
]);

// optionally set client scopes, defaults to "data:read"
$client->setDefaultScopes(["data:read"]);

// redirect to todoist login page
$loginPageUri = $client->getAuthorizationUrl();

// after login and beeing redirected back to your application
// read authorization code from request
$authorizationCode = $_GET['code'];

// exchange authorization code for token
$token = $client->getAccessToken("authorization_code", [
    "code" => $authorizationCode
]);

// read single resource
$response = $client->readResource("projects", $token);

// read multiple resources
$response = $client->readResources(["projects", "labels"], $token);

// write resource
$commands = [
    "type" => "item_add",
    "uuid" => uniqid(),
    "temp_id" => uniqid(),
    "args" => [
        "project_id" => "foo",
        "content" => "bar"
    ]
];
$response = $client->writeResources($commands, $token);