YouTube Content ID পরিষেবা

YouTube Content ID পরিষেবা আপনাকে Apps স্ক্রিপ্টে YouTube Content ID API ব্যবহার করার অনুমতি দেয়৷ এই API ডেভেলপারদের YouTube এর Content ID অধিকার ব্যবস্থাপনা সিস্টেমের সাথে সরাসরি ইন্টারঅ্যাক্ট করতে দেয়। একটি YouTube অংশীদার হিসাবে, আপনি আপনার সম্পদ, দাবি এবং প্রচারাভিযান তৈরি এবং পরিচালনা করতে API ব্যবহার করতে পারেন৷

রেফারেন্স

এই পরিষেবার বিশদ তথ্যের জন্য, সর্বজনীন YouTube Content ID API-এর রেফারেন্স ডকুমেন্টেশন দেখুন৷ Apps স্ক্রিপ্টের সমস্ত উন্নত পরিষেবাগুলির মতো, উন্নত YouTube Content ID পরিষেবা সর্বজনীন API হিসাবে একই বস্তু, পদ্ধতি এবং প্যারামিটার ব্যবহার করে৷ আরও তথ্যের জন্য, দেখুন কিভাবে পদ্ধতি স্বাক্ষর নির্ধারণ করা হয়

সমস্যাগুলি রিপোর্ট করতে এবং অন্যান্য সমর্থন খুঁজতে, YouTube API সমর্থন নির্দেশিকা দেখুন।

কোডের উদাহরণ

নীচের নমুনা কোডটি YouTube Content ID API-এর সংস্করণ 1 ব্যবহার করে৷

আপনার ভিডিও দাবি করুন

এই ফাংশনটি নির্দিষ্ট সম্পদ এবং নীতি নিয়মের সাথে আপনার ভিডিওতে অংশীদার-আপলোড করা দাবি তৈরি করে।

উন্নত/youtubeContentId.gs
/**
 * This function creates a partner-uploaded claim on a video with the specified
 * asset and policy rules.
 * @see https://developers.google.com/youtube/partner/docs/v1/claims/insert
 */
function claimYourVideoWithMonetizePolicy() {
  // The ID of the content owner that you are acting on behalf of.
  const onBehalfOfContentOwner = 'replaceWithYourContentOwnerID';
  // A YouTube video ID to claim. In this example, the video must be uploaded
  // to one of your onBehalfOfContentOwner's linked channels.
  const videoId = 'replaceWithYourVideoID';
  const assetId = 'replaceWithYourAssetID';
  const claimToInsert = {
    'videoId': videoId,
    'assetId': assetId,
    'contentType': 'audiovisual',
    // Set the claim policy to monetize. You can also specify a policy ID here
    // instead of policy rules.
    // For details, please refer to the YouTube Content ID API Policies
    // documentation:
    // https://developers.google.com/youtube/partner/docs/v1/policies
    'policy': {'rules': [{'action': 'monetize'}]}
  };
  try {
    const claimInserted = YouTubeContentId.Claims.insert(claimToInsert,
        {'onBehalfOfContentOwner': onBehalfOfContentOwner});
    console.log('Claim created on video %s: %s', videoId, claimInserted);
  } catch (e) {
    console.log('Failed to create claim on video %s, error: %s',
        videoId, e.message);
  }
}

সম্পদের মালিকানা আপডেট করুন

এই ফাংশনটি একটি বিদ্যমান সম্পদে আপনার মালিকানা আপডেট করে।

উন্নত/youtubeContentId.gs
/**
 * This function updates your onBehalfOfContentOwner's ownership on an existing
 * asset.
 * @see https://developers.google.com/youtube/partner/docs/v1/ownership/update
 */
function updateAssetOwnership() {
  // The ID of the content owner that you are acting on behalf of.
  const onBehalfOfContentOwner = 'replaceWithYourContentOwnerID';
  // Replace values with your asset id
  const assetId = 'replaceWithYourAssetID';
  // The new ownership here would replace your existing ownership on the asset.
  const myAssetOwnership = {
    'general': [
      {
        'ratio': 100,
        'owner': onBehalfOfContentOwner,
        'type': 'include',
        'territories': [
          'US',
          'CA'
        ]
      }
    ]
  };
  try {
    const updatedOwnership = YouTubeContentId.Ownership.update(myAssetOwnership,
        assetId, {'onBehalfOfContentOwner': onBehalfOfContentOwner});
    console.log('Ownership updated on asset %s: %s', assetId, updatedOwnership);
  } catch (e) {
    console.log('Ownership update failed on asset %s, error: %s',
        assetId, e.message);
  }
}

একটি দাবি মুক্তি

এই ফাংশনটি একটি ভিডিওতে আপনার বিদ্যমান দাবি প্রকাশ করে৷

উন্নত/youtubeContentId.gs
/**
 * This function releases an existing claim your onBehalfOfContentOwner has
 * on a video.
 * @see https://developers.google.com/youtube/partner/docs/v1/claims/patch
 */
function releaseClaim() {
  // The ID of the content owner that you are acting on behalf of.
  const onBehalfOfContentOwner = 'replaceWithYourContentOwnerID';
  // The ID of the claim to be released.
  const claimId = 'replaceWithYourClaimID';
  // To release the claim, change the resource's status to inactive.
  const claimToBeReleased = {
    'status': 'inactive'
  };
  try {
    const claimReleased = YouTubeContentId.Claims.patch(claimToBeReleased,
        claimId, {'onBehalfOfContentOwner': onBehalfOfContentOwner});
    console.log('Claim %s was released: %s', claimId, claimReleased);
  } catch (e) {
    console.log('Failed to release claim %s, error: %s', claimId, e.message);
  }
}