RTB パブリッシャーの設定
Google は、パブリッシャー設定をまとめたリストをアップロードすることで、それらのリストを利用できるようにします。
アカウント固有の Google Cloud Storage バケット(
Google が所有する)。これらをダウンロードして、
入札時に行われます有効にするには、テクニカル アカウント マネージャーにお問い合わせください
有効にできます
パブリッシャーの設定を含むファイルはプログラムでダウンロードできます
Cloud Storage
API、Google Developer を介して手動で
コンソール UI を使用するか、gsutil コマンドライン ツールを使用します。
詳しくは、Google Cloud
Storage のドキュメントをご覧ください。
Google Cloud Storage
このファイルは RFC 1952 に従って gzip 圧縮されています。ファイルを抽出するには
gzip -d <filename>
を実行します。既存の
zlib などの圧縮ライブラリを使用して、
gzip 形式に対応しています。その結果、次のようにシリアル化されたプロトコル バッファになります。
BidRequest
内の POST リクエストのペイロード。
次のスニペットで解析します。
string compressed = /* the payload from the GET request */;
string uncompressed = gunzip(compressed);
PublisherSettingsList publisher_settings;
if (publisher_settings.ParseFromString(uncompressed)) {
// Process the publisher settings.
}
PublisherSettingsList
のプロトコル バッファ定義には、
参照データからダウンロードされる
ページをご覧ください。また、圧縮ファイルを使用して
アカウント担当者から publisher-settings.pb.gz
ファイルをダウンロードしてください。これは、
プロトコル バッファの定義とサンプルのパブリッシャーが格納されている
。
PublisherSettingsList
の順序はいつでも変更できます。
特定の順序や並べ替えは保証されません。パブリッシャーの各エントリは
設定リストには、ID と、そのリソースに適用する
BidRequests
がその識別子でタグ付けされています。特徴は
新しいパブリッシャー設定リストを定期的にチェックします。
Google がリアルタイム ビッダーの対象となるインプレッションを受け取ると、
Google は、エントリに対応する識別子を入札リクエストに含めます。
パブリッシャー設定リストをご覧ください入札システムでパブリッシャーの設定を使用できる
そのインプレッションに対応する広告候補をフィルタできます所定の要件を満たすには、
広告候補がパブリッシャー設定のすべての項目を満たしている
そのリクエストで送信された識別子。
なお、パブリッシャーの設定がファイルで欠落している場合は、
ID に関連付けられた URL がブロックされていないことが原因です。
パブリッシャーの設定ファイルは、サイズを減らすために複数の小さなファイルに分割されます。
1 回のトランザクションでダウンロードする必要があるデータの量。ファイル
約 5 MB のチャンクと名前に分割されるため、
publisher-settings.0.pb.gz
~
publisher-settings.n.pb.gz
(n は実際のイベント数
1 を引いた値になります)。これらを取得するには、アカウント担当者にご連絡ください。
できます。
特に記載のない限り、このページのコンテンツはクリエイティブ・コモンズの表示 4.0 ライセンスにより使用許諾されます。コードサンプルは Apache 2.0 ライセンスにより使用許諾されます。詳しくは、Google Developers サイトのポリシーをご覧ください。Java は Oracle および関連会社の登録商標です。
最終更新日 2024-09-10 UTC。
[null,null,["最終更新日 2024-09-10 UTC。"],[[["Google provides aggregated publisher settings lists via a Google Cloud Storage bucket for account-specific use, enabling targeting adjustments beyond bidding time."],["These publisher settings files can be accessed programmatically using the Cloud Storage API, manually through the Google Developer Console UI, or via the gsutil command-line tool."],["The files are gzip-compressed and contain a serialized protocol buffer that can be decompressed using commands like `gzip -d \u003cfilename\u003e` or with zlib-like libraries."],["The `PublisherSettingsList` protocol buffer definition, which provides details about the settings and an example file, can be downloaded from the reference data page or requested from your account representative."],["Publisher settings are split into multiple smaller, approximately 5 MB files, named `publisher-settings.0.pb.gz` through `publisher-settings.n.pb.gz`, to ease downloading."]]],["Google provides aggregated publisher settings lists in account-specific Google Cloud Storage buckets. These files, compressed in gzip format, can be downloaded programmatically via the Cloud Storage API, manually through the Google Developer Console, or using the `gsutil` tool. They contain serialized protocol buffers that can be parsed to extract settings. Bidding systems can utilize these settings to filter ads based on identifiers included in bid requests. Files are split into ~5MB chunks. Missing settings are due to lack of associated blocked URLs.\n"]]