Cross-posted from the Google Apps Developer BlogGoogle Tasks helps many of us to remember all those things that keep us busy. Towards the end of last year we asked our users what they wanted to see improved with Google Tasks and an overwhelming request was for the ability to access tasks from anywhere — be it on the move, on the desktop, or through their favorite Web apps.Today, we’re checking off a big to-do from our list and are inviting you to try out the new Google Tasks API. Using the Google Tasks API, developers can — for the very first time — create rich applications which integrate directly with Google Tasks.The Google Tasks API provides developers with a powerful set of API endpoints for retrieving and modifying Google Tasks content and metadata. It offers a simple, RESTful interface and supports all basic operations required to query, manage and sync a user’s tasks and task lists. The API uses JSON for data representation and works with multiple authentication mechanisms including OAuth 2.0.
POST /tasks/v1/lists/<list-ID>/tasksContent-Type: application/json...{ title: "Publish blog post" }
Task task = new Task();task.setTitle("Publish blog post");client.tasks.insert( "list-ID", task).execute();
Want to weigh in on this topic? Discuss on Buzz