RTB 게시자 설정
컬렉션을 사용해 정리하기
내 환경설정을 기준으로 콘텐츠를 저장하고 분류하세요.
Google에서는 집계된 게시자 설정 목록을 업로드하여 사용할 수 있도록 합니다.
(Cloud Storage 프로젝트 아래)의 계정별 Google Cloud Storage 버킷으로
Google 소유). 맞춤 측정기준을 다운로드하여
확인할 수 있습니다 사용 설정하려면 기술계정 관리자에게 문의하세요.
이 기능을 사용할 수 있습니다.
게시자 설정이 포함된 파일은 프로그래매틱 방식으로 다운로드할 수 있습니다.
Cloud Storage나
API: Google Developers를 통해 수동으로
콘솔 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
의 순서는 언제든지 변경될 수 있습니다.
특정 순서나 정렬은 보장되지 않습니다. 게시자의 각 항목은
설정 목록에는 식별자와
BidRequests
에 해당 식별자로 태그가 지정되어 있습니다. 특성을 추가할 수 있는
정기적으로 새 게시자 설정 목록을 확인합니다.
Google이 실시간 입찰에 적합한 노출을 수신하면
Google은 입찰 요청에 포함된 식별자 중
게시자 설정 목록으로 이동합니다. 입찰 시스템에서 게시자 설정을 사용할 수 있음
해당 노출에 대한 조합 광고를 필터링합니다. 특정 자격요건에
조합 광고가 모든 게시자 설정 항목을 준수해야 함
요청된 식별자를 나타냅니다.
파일에서 누락된 게시자 설정은
식별자에 연결된 차단된 URL이 없기 때문입니다.
게시자 설정 파일은 여러 개의 작은 파일로 분할되어
단일 트랜잭션으로 다운로드해야 하는 데이터의 양입니다. 파일
약 5MB의 청크와 이름으로 나뉩니다.
publisher-settings.0.pb.gz
~
publisher-settings.n.pb.gz
(여기서 n는
파일만 볼 수 있습니다.) 필요한 경우 계정 담당자에게 문의하세요.
할 수 있습니다.
달리 명시되지 않는 한 이 페이지의 콘텐츠에는 Creative Commons Attribution 4.0 라이선스에 따라 라이선스가 부여되며, 코드 샘플에는 Apache 2.0 라이선스에 따라 라이선스가 부여됩니다. 자세한 내용은 Google Developers 사이트 정책을 참조하세요. 자바는 Oracle 및/또는 Oracle 계열사의 등록 상표입니다.
최종 업데이트: 2025-08-21(UTC)
[null,null,["최종 업데이트: 2025-08-21(UTC)"],[[["\u003cp\u003eGoogle provides aggregated publisher settings lists via a Google Cloud Storage bucket for account-specific use, enabling targeting adjustments beyond bidding time.\u003c/p\u003e\n"],["\u003cp\u003eThese 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.\u003c/p\u003e\n"],["\u003cp\u003eThe files are gzip-compressed and contain a serialized protocol buffer that can be decompressed using commands like \u003ccode\u003egzip -d <filename>\u003c/code\u003e or with zlib-like libraries.\u003c/p\u003e\n"],["\u003cp\u003eThe \u003ccode\u003ePublisherSettingsList\u003c/code\u003e 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.\u003c/p\u003e\n"],["\u003cp\u003ePublisher settings are split into multiple smaller, approximately 5 MB files, named \u003ccode\u003epublisher-settings.0.pb.gz\u003c/code\u003e through \u003ccode\u003epublisher-settings.n.pb.gz\u003c/code\u003e, to ease downloading.\u003c/p\u003e\n"]]],["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"],null,["# RTB Publisher Settings\n\nGoogle makes aggregated publisher settings lists available by uploading them\nto an account-specific Google Cloud Storage bucket (under a project that is\nowned by Google). You can download these to use for targeting that cannot be\ndone at bidding time. Talk to your technical account manager to enable\nthis feature for your account.\n\nThe files containing publisher settings can be downloaded programmatically\nby using the [Cloud Storage\nAPI](//cloud.google.com/storage/docs/json_api/v1/libraries), manually through the [Google Developer\nConsole](//cloud.google.com/storage/docs/cloud-console) UI, or by using the [gsutil](//cloud.google.com/storage/docs/gsutil) command-line tool.\nSee the [Google Cloud\nStorage](//cloud.google.com/storage/docs/overview) documentation for more details about accessing data stored in\nGoogle Cloud Storage.\n\nThe file is gzip-compressed according to [RFC 1952](//www.ietf.org/rfc/rfc1952.txt). To extract the file from\nthe command line, run `gzip -d \u003cfilename\u003e`. To extract the\nfile programmatically, you can use zlib or a similar compression library that\nsupports gzip format. The result is a serialized protocol buffer, similar to\nthe payload of the POST request in a `BidRequest`, which can be\nparsed with the following snippet: \n\n```gdscript\nstring compressed = /* the payload from the GET request */;\nstring uncompressed = gunzip(compressed);\nPublisherSettingsList publisher_settings;\nif (publisher_settings.ParseFromString(uncompressed)) {\n // Process the publisher settings.\n}\n```\n\nThe protocol buffer definition for `PublisherSettingsList` can be\ndownloaded from the [reference data\npage](/authorized-buyers/rtb/data). You can also request a compressed\n`publisher-settings.pb.gz` file from your account representative. It\ncontains the protocol buffer definition as well as an example publisher\nsettings file.\n\nThe ordering of `PublisherSettingsList` can change at any time.\nNo specific order or sorting is guaranteed. Each entry in the publisher\nsettings list contains an identifier, and several settings that apply to\n`BidRequests` tagged with that identifier. You can add a feature to\nyour bidding systems to periodically check for a new publisher settings list.\nWhen Google receives an impression that is eligible for real-time bidding,\nGoogle includes identifiers in the bid request that correspond to entries in\nthe publisher settings list. Your bidding system can use the publisher settings\nto filter the candidate ads for that impression. To be eligible for a given\nimpression, the candidate ad must comply with all the publisher setting entries\nfor which identifiers were sent in the request.\n\nNote that any missing publisher settings from the file are\ndue to the identifiers not having blocked URLs associated with them.\n\nThe publisher settings file is broken into multiple smaller files to reduce\nthe amount of data that must be downloaded in a single transaction. The files\nare broken into approximately 5 MB chunks and names as\n`publisher-settings.0.pb.gz` through\n`publisher-settings.n.pb.gz` (where \u003cvar translate=\"no\"\u003en\u003c/var\u003e is the number of\nfiles minus one.) Contact your account representative to obtain these\nfiles."]]