Google Tasks API를 사용하면 Google Tasks 콘텐츠 및 메타데이터를 검색하고 읽고 업데이트할 수 있습니다. 이 문서에서는 다양한 프로그래밍 언어 (현재 Java, Python, PHP)의 RESTful 통화 스타일과 클라이언트 라이브러리를 사용하여 Google Tasks 데이터에 액세스하고 수정하는 방법을 설명합니다.
Google Tasks와 긴밀하게 통합하려는 사이트나 애플리케이션은 Google Tasks API를 활용할 수 있습니다. 예를 들어 Google Tasks API를 사용하여 모바일 앱에서 Google 할 일 목록을 관리하거나 할 일과 같이 더 광범위한 워크플로 앱에 작업을 통합할 수 있습니다.
Google Tasks는 두 가지 기본 개념에 기반합니다.
태스크 목록
작업이 포함된 목록입니다. 사용자는 할 일 목록을 두 개 이상 사용하여 원하는 방식으로 할 일을 관리할 수 있습니다.
작업
할 일 제목, 메모, 마감일, 완료된 날짜와 같은 정보가 포함된 단일 태스크입니다.
Tasks API 데이터 모델
리소스는 고유한 식별자가 있는 개별 데이터 항목입니다. Google Tasks API는 두 가지 유형의 리소스에서 작동합니다.
[[["이해하기 쉬움","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."]]