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 계열사의 등록 상표입니다.
최종 업데이트: 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"]]