संग्रह की मदद से व्यवस्थित रहें
अपनी प्राथमिकताओं के आधार पर, कॉन्टेंट को सेव करें और कैटगरी में बांटें.
Google Tasks API, आपको Google Tasks का कॉन्टेंट और मेटाडेटा खोजने, पढ़ने, और अपडेट करने की सुविधा देता है. इस दस्तावेज़ में बताया गया है कि Google Tasks का डेटा ऐक्सेस करने और उसमें बदलाव करने के लिए, RESTful कॉलिंग स्टाइल और क्लाइंट लाइब्रेरी का इस्तेमाल करके, अलग-अलग प्रोग्रामिंग लैंग्वेज (फ़िलहाल, Java, Python, और PHP) के लिए कैसे इस्तेमाल किए जा सकते हैं.
जिन साइटों या ऐप्लिकेशन को Google Tasks के साथ बेहतर इंटिग्रेशन की ज़रूरत है वे Google Tasks API का इस्तेमाल कर सकते हैं. उदाहरण के लिए, किसी मोबाइल ऐप्लिकेशन में Google Tasks API को मैनेज करने के लिए, Google Tasks API का इस्तेमाल किया जा सकता है. इसके अलावा, Au-to-do जैसे ज़्यादा वर्कफ़्लो वाले ऐप्लिकेशन में टास्क को इंटिग्रेट किया जा सकता है.
Google Tasks को दो बुनियादी सिद्धांतों पर बनाया गया है:
टास्क की सूची
टास्क की सूची. उपयोगकर्ता अपने टास्क को अपने हिसाब से मैनेज करने के लिए, एक से ज़्यादा टास्क सूची बना सकते हैं.
टास्क
एक टास्क में टास्क का शीर्षक, नोट, पूरा होने की तारीख, और पूरा होने की तारीख जैसी जानकारी शामिल है.
Tasks API डेटा मॉडल
संसाधन, यूनीक आइडेंटिफ़ायर वाली व्यक्तिगत डेटा इकाई होता है. Google Tasks API दो तरह के संसाधनों पर काम करता है:
टास्क सूची से जुड़ा संसाधन
टास्क की सूची के बारे में बताता है.
टास्क के संसाधन
टास्क के बारे में बताता है.
Tasks API का डेटा मॉडल, संसाधनों के ग्रुप पर आधारित होता है. इन ग्रुप को कलेक्शन कहा जाता है:
टास्क की सूची का कलेक्शन
हर उपयोगकर्ता के पास कम से कम एक default टास्क सूची होती है.
टास्क इकट्ठा करना
इसमें टास्क की सूची में शामिल सभी टास्क के संसाधन शामिल होते हैं.
[[["समझने में आसान है","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-03-13 (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."]]