EU ユーザーの同意を求める
コレクションでコンテンツを整理
必要に応じて、コンテンツの保存と分類を行います。
Google の EU ユーザーの同意
ポリシー、
欧州のユーザーに
特定の情報を開示する必要があります
欧州経済領域(EEA)に居住し、Cookie または
その他のローカル ストレージ(法律で義務付けられている場合)、および
広告のパーソナライズを目的とする、個人データの共有、使用。このポリシーには、EU の e プライバシー指令と一般データ保護規則(GDPR)の要件が反映されています。
IMA SDK への同意の転送
Google への広告リクエストでは、デフォルトで、広告選択に基づきパーソナライズド広告が配信されます。
ウェブページまたはアプリのコンテンツとユーザーの履歴の両方に基づいて
表示されます。Google は、非パーソナライズド広告の配信もサポートしています。
パーソナライズされていない広告とパーソナライズされていない広告についての詳細
広告
パーソナライズされていない広告を強制的に表示するには、広告タグに &npa=1
を追加して、パーソナライズされていない広告コンテンツのみを返すように指定します。
これは、次のように adTagParameters
プロパティを使用して行います。
function requestLiveStream(assetKey, apiKey) {
var streamRequest = new google.ima.dai.api.LiveStreamRequest();
streamRequest.assetKey = assetKey;
streamRequest.apiKey = apiKey;
streamRequest.adTagParameters = {"npa": 1};
streamManager.requestStream(streamRequest);
}
同意年齢に満たないユーザーとしてタグ付けする
広告リクエストにマークを付けることで、ヨーロッパのユーザーに広告を表示できます
同意年齢に満たない欧州経済領域(EEA)この機能は、一般データ保護規則(GDPR)に準拠するためのものです。なお、GDPR の下では他の法的義務が課せられる場合もありますので、欧州連合(EU)のガイダンスをご確認のうえ、お客様の顧問弁護士にご相談ください。Google が提供するツールの目的は、法令遵守をサポートすることであり、パブリッシャー様を法的義務から解放することではありません。GDPR が及ぼす影響の詳細
ニュース メディア
この機能を使用する場合は、TFUA(Tag For Users under the Age of Consent and
ヨーロッパなど)のパラメータが含まれます。このパラメータは、その広告リクエストでリマーケティングなどによるパーソナライズド広告へのリクエストを無効にします。また、
リクエスト(広告測定ピクセルや
配信します。このパラメータを追加しても、
アド マネージャーの Key-Value です。そのため、Terraform を使用する際は、必ず
Key-Value は GDPR を遵守しています。
TFUA パラメータを広告リクエストに含めることは、
サイト単位で適用できます
実装時に行われるすべての広告リクエストにこのタグを含めるには、以下の手順を行います。
広告タグに &tfua=1
を追加します。
function requestLiveStream(assetKey, apiKey) {
var streamRequest = new google.ima.dai.api.LiveStreamRequest();
streamRequest.assetKey = assetKey;
streamRequest.apiKey = apiKey;
streamRequest.adTagParameters = {"tfua": 1};
streamManager.requestStream(streamRequest);
}
上記の例ではライブ ストリーム リクエストを使用していますが、VOD ストリームにも同じことが適用されます。
特に記載のない限り、このページのコンテンツはクリエイティブ・コモンズの表示 4.0 ライセンスにより使用許諾されます。コードサンプルは Apache 2.0 ライセンスにより使用許諾されます。詳しくは、Google Developers サイトのポリシーをご覧ください。Java は Oracle および関連会社の登録商標です。
最終更新日 2025-08-21 UTC。
[null,null,["最終更新日 2025-08-21 UTC。"],[[["\u003cp\u003ePublishers serving users in the European Economic Area (EEA) must comply with Google's EU User Consent Policy, including obtaining consent for cookies, data collection, and ad personalization.\u003c/p\u003e\n"],["\u003cp\u003eTo comply with GDPR for users under the age of consent in the EEA, publishers can include the \u003ccode\u003e&tfua=1\u003c/code\u003e parameter in ad requests, disabling personalized advertising and third-party ad vendor requests.\u003c/p\u003e\n"],["\u003cp\u003eNon-personalized ads can be served by appending \u003ccode\u003e&npa=1\u003c/code\u003e to the ad tag, restricting ad selection to the content of the webpage or app.\u003c/p\u003e\n"],["\u003cp\u003ePublishers are ultimately responsible for GDPR compliance, even when using Google's tools designed to help facilitate it.\u003c/p\u003e\n"]]],[],null,["# Request consent from EU users\n\nUnder Google's [EU User Consent\nPolicy](//www.google.com/about/company/consentstaging.html),\nyou must make certain disclosures to your users in the European\nEconomic Area (EEA) and obtain their consent for the use of cookies or\nother local storage where legally required, and for the collection,\nsharing, and use of personal data for ads personalization. This policy\nreflects the requirements of the EU ePrivacy Directive and the General\nData Protection Regulation (GDPR).\n\n\u003cbr /\u003e\n\nForwarding consent to the IMA SDK\n---------------------------------\n\nBy default, ad requests to Google serve personalized ads, with ad selection\nbased on both the content of the web page or app and the history of the user\nvisiting it. Google also supports serving non-personalized ads.\n[Learn more about personalized and non-personalized\nads](//support.google.com/admanager/answer/9005435)\n\nTo force non-personalized ads, you can append `&npa=1` to your ad tag\nto specify that only non-personalized ad content should be returned.\n\nThis is accomplished with the `adTagParameters` property, like so: \n\n```gdscript\nfunction requestLiveStream(assetKey, apiKey) {\n var streamRequest = new google.ima.dai.api.LiveStreamRequest();\n streamRequest.assetKey = assetKey;\n streamRequest.apiKey = apiKey;\n streamRequest.adTagParameters = {\"npa\": 1};\n streamManager.requestStream(streamRequest);\n}\n```\n\n\u003cbr /\u003e\n\nTagging users as under the age of consent\n-----------------------------------------\n\nYou can mark your ad requests to receive treatment for users in the European\nEconomic Area (EEA) under the age of consent. This feature is designed to\nhelp facilitate compliance with the [General Data Protection Regulation\n(GDPR)](//eur-lex.europa.eu/legal-content/EN/TXT/?uri=CELEX:32016R0679).\nNote that you may have other legal obligations under GDPR. Please review\nthe European Union's guidance and consult with your own legal counsel.\nPlease remember that Google's tools are designed to facilitate compliance\nand do not relieve any particular publisher of its obligations under the\nlaw. [Learn more about how GDPR affects\npublishers](//support.google.com/admanager/answer/7666366)\n\nWhen using this feature, a TFUA (Tag For Users under the Age of Consent in\nEurope) parameter will be included in the ad request. This parameter disables\n[personalized advertising](//support.google.com/admanager/answer/9005435),\nincluding remarketing, for that specific ad request. It also disables\nrequests to third-party ad vendors, such as ad measurement pixels and\nthird-party ad servers. The parameter does not affect your use of\nAd Manager key-values. Consequently, you must ensure that your use of\nkey-values is compliant with GDPR.\n\nIncluding the TFUA parameter in an ad request takes precedence over any\napplicable site-level settings.\n\nTo include this tag on all ad requests made from your implementation,\nappend `&tfua=1` to your ad tag. \n\n```gdscript\nfunction requestLiveStream(assetKey, apiKey) {\n var streamRequest = new google.ima.dai.api.LiveStreamRequest();\n streamRequest.assetKey = assetKey;\n streamRequest.apiKey = apiKey;\n streamRequest.adTagParameters = {\"tfua\": 1};\n streamManager.requestStream(streamRequest);\n}\n```\n\n\u003cbr /\u003e\n\nThe example above uses a live stream request, but the same applies to VOD streams."]]