خدمة Content ID في YouTube
تنظيم صفحاتك في مجموعات
يمكنك حفظ المحتوى وتصنيفه حسب إعداداتك المفضّلة.
إدارة مواد العرض والمطالبات والحملات لشركاء المحتوى على YouTube
تتيح لك خدمة YouTube Content ID استخدام YouTube Content ID API في Google Apps Script. تتيح واجهة برمجة التطبيقات هذه للمطوّرين التفاعل مباشرةً مع نظام إدارة الحقوق في Content ID على YouTube. بصفتك شريكًا في YouTube، يمكنك استخدام واجهة برمجة التطبيقات لإنشاء وإدارة مواد العرض والمطالبات والحملات.
للحصول على معلومات تفصيلية عن هذه الخدمة، يُرجى الاطّلاع على
المستندات المرجعية الخاصة
بواجهة برمجة التطبيقات العامة Content ID API في YouTube. مثل جميع الخدمات المتقدّمة في Apps Script، تستخدم خدمة YouTube Content ID المتقدّمة العناصر والطرق والمعلَمات نفسها التي تستخدمها واجهة برمجة التطبيقات العامة. لمزيد من المعلومات، اطّلِع على كيفية تحديد التواقيع.
للإبلاغ عن المشاكل والعثور على دعم آخر، يُرجى الاطّلاع على
دليل دعم YouTube API.
نموذج التعليمات البرمجية
يستخدم نموذج الرمز التالي الإصدار 1 من YouTube Content ID API.
المطالبة بملكية الفيديو
تنشئ هذه الدالة مطالبة بملكية فيديو حمّله الشريك، وذلك باستخدام مادة العرض وقواعد السياسة المحدّدة.
/** * 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 */functionclaimYourVideoWithMonetizePolicy(){// The ID of the content owner that you are acting on behalf of.constonBehalfOfContentOwner="replaceWithYourContentOwnerID";// A YouTube video ID to claim. In this example, the video must be uploaded// to one of your onBehalfOfContentOwner's linked channels.constvideoId="replaceWithYourVideoID";constassetId="replaceWithYourAssetID";constclaimToInsert={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/policiespolicy:{rules:[{action:"monetize"}]},};try{constclaimInserted=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,);}}
/** * This function updates your onBehalfOfContentOwner's ownership on an existing * asset. * @see https://developers.google.com/youtube/partner/docs/v1/ownership/update */functionupdateAssetOwnership(){// The ID of the content owner that you are acting on behalf of.constonBehalfOfContentOwner="replaceWithYourContentOwnerID";// Replace values with your asset idconstassetId="replaceWithYourAssetID";// The new ownership here would replace your existing ownership on the asset.constmyAssetOwnership={general:[{ratio:100,owner:onBehalfOfContentOwner,type:"include",territories:["US","CA"],},],};try{constupdatedOwnership=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,);}}
سحب مطالبة
تؤدي هذه الوظيفة إلى إزالة مطالبة حالية مقدَّمة منكم بملكية فيديو.
/** * This function releases an existing claim your onBehalfOfContentOwner has * on a video. * @see https://developers.google.com/youtube/partner/docs/v1/claims/patch */functionreleaseClaim(){// The ID of the content owner that you are acting on behalf of.constonBehalfOfContentOwner="replaceWithYourContentOwnerID";// The ID of the claim to be released.constclaimId="replaceWithYourClaimID";// To release the claim, change the resource's status to inactive.constclaimToBeReleased={status:"inactive",};try{constclaimReleased=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);}}
تاريخ التعديل الأخير: 2026-03-03 (حسب التوقيت العالمي المتفَّق عليه)
[[["يسهُل فهم المحتوى.","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"]],["تاريخ التعديل الأخير: 2026-03-03 (حسب التوقيت العالمي المتفَّق عليه)"],[],[]]