Google Tasks API ช่วยให้คุณค้นหา อ่าน และอัปเดตเนื้อหาและข้อมูลเมตาของ Google Tasks ได้ เอกสารนี้จะอธิบายวิธีใช้รูปแบบการเรียก RESTful และไลบรารีของไคลเอ็นต์สำหรับภาษาโปรแกรมต่างๆ (ปัจจุบันคือ Java, Python และ PHP) เพื่อเข้าถึงและแก้ไขข้อมูล Google Tasks
เว็บไซต์หรือแอปพลิเคชันที่ต้องการการผสานรวมกับ Google Tasks ในระดับลึกยิ่งขึ้นจะใช้ประโยชน์จาก Google Tasks API ได้ เช่น คุณสามารถใช้ Google Tasks API เพื่อจัดการรายการงานของ Google ในแอปบนอุปกรณ์เคลื่อนที่ หรือผสานรวมงานกับแอปเวิร์กโฟลว์ที่ครอบคลุมมากขึ้น เช่น Au-to-do
Google Tasks สร้างขึ้นจากแนวคิดพื้นฐาน 2 ประการดังนี้
[[["เข้าใจง่าย","easyToUnderstand","thumb-up"],["แก้ปัญหาของฉันได้","solvedMyProblem","thumb-up"],["อื่นๆ","otherUp","thumb-up"]],[["ไม่มีข้อมูลที่ฉันต้องการ","missingTheInformationINeed","thumb-down"],["ซับซ้อนเกินไป/มีหลายขั้นตอนมากเกินไป","tooComplicatedTooManySteps","thumb-down"],["ล้าสมัย","outOfDate","thumb-down"],["ปัญหาเกี่ยวกับการแปล","translationIssue","thumb-down"],["ตัวอย่าง/ปัญหาเกี่ยวกับโค้ด","samplesCodeIssue","thumb-down"],["อื่นๆ","otherDown","thumb-down"]],["อัปเดตล่าสุด 2025-08-29 UTC"],[],[],null,["# Overview\n\nThe Google Tasks API lets you search, read, and update Google Tasks content and metadata. This document describes how to use a RESTful calling style and client libraries for various programming languages (currently Java, Python, and PHP) to access and edit Google Tasks data.\n\nSites or applications that want deeper integration with Google Tasks can leverage the Google Tasks API. For example, you could use the Google Tasks API to manage Google task lists in a mobile app, or you could integrate tasks into a more extensive workflow app such as [Au-to-do](http://code.google.com/p/au-to-do/).\n\nGoogle Tasks is built on two basic concepts:\n\nTask List\n: A list containing tasks. Users can have more than one task list to manage their tasks the way they want.\n\nTask\n: A single task containing information such as the title of the task, notes, the due date, and the completed date.\n\n### Tasks API data model\n\nA resource is an individual data entity with a unique identifier. The Google Tasks API operates on two types of resources:\n\nTask List Resource\n: Represents a task list.\n\nTask Resource\n: Represents a task.\n\nThe Tasks API data model is based on groups of resources, called collections:\n\nTask List Collection\n: Each user has at least one `default` Task List.\n\nTask Collection\n: Consists of all the Task Resources within a specific Task List Resource."]]