PHP code example of jeroendesloovere / wunderlist-php-api

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

    

jeroendesloovere / wunderlist-php-api example snippets

 json
{
    "roendesloovere/wunderlist-php-api": "dev-master"
    }
}
 php
// e_once __DIR__ . '/src/Wunderlist.php';

// define API
$api = new \JeroenDesloovere\Wunderlist\Wunderlist('username', 'password');

// get profile
$profile = $api->getProfile();

// get lists
$lists = $api->getLists();

// get tasks
$tasks = $api->getTasks();

// ...