nav / wunderlist
Installs: 6
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 0
Open Issues: 0
Type:project
Requires
- php: >=5.5.9
- doctrine/doctrine-bundle: ^1.6
- doctrine/doctrine-cache-bundle: ^1.2
- doctrine/orm: ^2.5
- guzzlehttp/guzzle: ~6.0
- guzzlehttp/oauth-subscriber: 0.3.*
- incenteev/composer-parameter-handler: ^2.0
- sensio/distribution-bundle: ^5.0
- sensio/framework-extra-bundle: ^3.0.2
- symfony/monolog-bundle: ^2.8
- symfony/swiftmailer-bundle: ^2.3
- symfony/symfony: 3.0.*
Requires (Dev)
- sensio/generator-bundle: ^3.0
- symfony/phpunit-bridge: ^3.0
This package is not auto-updated.
Last update: 2025-04-02 23:02:56 UTC
README
A Symfony project created on May 15, 2016, 1:51 pm.
Notes
- Wunderlist creation of tasks, lists and reminders with the Wunderlist API
- Client for handling resources and usefull methods on tasks,lists, and reminders
- Using Wunderlist with OAuth 2.0 with the GuzzleHttp client
- Goal is automated task creation on external events
- Uses Guzzle as Http Client
Todo
Creating a Client for easy access to tasks/lists/etc.Automate tasks based on errors/problems with applicationCreating new tasks / lists for each application on controlcenter
Examples
// Get the Wunderlist Task Service
$taskService = $this->get('nav_wunderlist.tasks');
// You should probably want to give this your own implementation
$client = $taskService->getWunderlistAccountForTesting();
// Retrieve lists for user
$lists = $taskService->getLists();
// Retrieve tasks for a list
$tasks = $taskService->getTasksForListId("WUNDERLIST-LIST-ID");
// Retrieve files in a list
$files = $taskService->getFilesForListId("WUNDERLIST-LIST-ID");
// Create a new Task within a list
$newTask = $taskService->createTask("WUNDERLIST-LIST-ID", "Nieuwe taak via API");
// Create a new List
$newList = $taskService->createList("Mijn nieuwe lijst");