개요
컬렉션을 사용해 정리하기
내 환경설정을 기준으로 콘텐츠를 저장하고 분류하세요.
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는 두 가지 유형의 리소스에서 작동합니다.
- 할 일 목록 리소스
- 작업 목록을 나타냅니다.
- 태스크 리소스
- 작업을 나타냅니다.
Tasks API 데이터 모델은 컬렉션이라고 하는 리소스 그룹을 기반으로 합니다.
- 작업 목록 컬렉션
- 각 사용자에게는 하나 이상의
default
작업 목록이 있습니다.
- 작업 컬렉션
- 특정 작업 목록 리소스 내의 모든 작업 리소스로 구성됩니다.
달리 명시되지 않는 한 이 페이지의 콘텐츠에는 Creative Commons Attribution 4.0 라이선스에 따라 라이선스가 부여되며, 코드 샘플에는 Apache 2.0 라이선스에 따라 라이선스가 부여됩니다. 자세한 내용은 Google Developers 사이트 정책을 참조하세요. 자바는 Oracle 및/또는 Oracle 계열사의 등록 상표입니다.
최종 업데이트: 2025-08-29(UTC)
[null,null,["최종 업데이트: 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."]]