সেভ করা পৃষ্ঠা গুছিয়ে রাখতে 'সংগ্রহ' ব্যবহার করুন
আপনার পছন্দ অনুযায়ী কন্টেন্ট সেভ করুন ও সঠিক বিভাগে রাখুন।
ডেটা ট্রান্সফার API ব্যবহার করতে, আপনি একটি স্থানান্তর সংজ্ঞায়িত করুন এবং তারপর insert পদ্ধতি ব্যবহার করে এটি শুরু করুন। স্থানান্তরটি এক বা একাধিক অ্যাপ্লিকেশনের পরিপ্রেক্ষিতে সংজ্ঞায়িত করা হয়েছে যার ডেটা স্থানান্তর করা হবে এবং অ্যাপ্লিকেশন-নির্দিষ্ট পরামিতিগুলি অন্তর্ভুক্ত করতে পারে৷
নিম্নে স্থানান্তর প্রক্রিয়ার একটি উচ্চ-স্তরের সারসংক্ষেপ রয়েছে:
আপনি যে অ্যাপ্লিকেশনগুলির জন্য ডেটা স্থানান্তর করতে চান তা নির্ধারণ করুন।
একটি DataTransfer সংস্থান সংজ্ঞায়িত করুন যা উৎস এবং গন্তব্য ব্যবহারকারীদের এবং ডেটা স্থানান্তর করার জন্য অ্যাপ্লিকেশনগুলি নির্দিষ্ট করে৷
উদাহরণস্বরূপ, নিম্নলিখিত JSON অনুরোধের বডি উৎস ব্যবহারকারী ( SOURCE_USER_ID ) থেকে গন্তব্য ব্যবহারকারী ( DESTINATION_USER_ID ) থেকে একটি ক্যালেন্ডার স্থানান্তর করে। আপনি ডিরেক্টরি API এর user.get() পদ্ধতিতে কল করে এবং তাদের ইমেল ঠিকানা বা ইমেল উপনাম প্রদান করে প্রতিটি মালিকের জন্য ব্যবহারকারী আইডি পুনরুদ্ধার করতে পারেন।
ডেটা ট্রান্সফার এপিআই আপনাকে ট্রান্সফার নির্মাণ ও পরিচালনা করতে সাহায্য করার জন্য অতিরিক্ত পদ্ধতি এবং সংস্থানগুলি অন্তর্ভুক্ত করে, যা আপনাকে নিম্নলিখিতগুলির মতো জিনিসগুলি করার অনুমতি দেয়:
তথ্য স্থানান্তরের জন্য উপলব্ধ অ্যাপ্লিকেশন তালিকা .
[[["সহজে বোঝা যায়","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"]],["2024-08-26 UTC-তে শেষবার আপডেট করা হয়েছে।"],[[["The Data Transfer API allows you to transfer data between users for specific applications, such as calendars, by defining a transfer and initiating it with the `insert` method."],["You need to define a `DataTransfer` resource which identifies the source and destination users, along with the applications and their parameters for data transfer."],["The process involves determining the applications, defining the transfer resource, and initiating the transfer using the `insert()` method."],["You can use the Data Transfer API to list available applications, retrieve application details, and manage transfer requests by listing or getting them based on user or status."]]],["Define a data transfer by specifying source and destination users and the applications involved. This is done by creating a `DataTransfer` resource. Initiate the transfer using the `insert()` method. Retrieve user IDs via the Directory API's `user.get()` method. Additional actions include listing applications, retrieving application information, listing transfers, and retrieving transfer requests. Application-specific parameters can be included. An example is provided of transferring a calendar.\n"]]