Layanan DoubleClick Bid Manager
Tetap teratur dengan koleksi
Simpan dan kategorikan konten berdasarkan preferensi Anda.
Layanan DoubleClick Bid Manager memungkinkan Anda menggunakan
DV360 Bid Manager API
di Apps Script. API ini memberikan akses terprogram ke Pelaporan DoubleClick Bid Manager (DBM).
Referensi
Untuk mengetahui informasi mendetail tentang layanan ini, lihat
dokumentasi referensi untuk
DBM Reporting API. Seperti semua layanan lanjutan di Apps Script, layanan DoubleClick Bid Manager menggunakan objek, metode, dan parameter yang sama dengan API publik. Untuk mengetahui informasi selengkapnya, lihat Cara menentukan tanda tangan metode.
/** * Logs all of the queries available in the account. */functionlistQueries(){// Retrieve the list of available queriestry{constqueries=DoubleClickBidManager.Queries.list();if(queries.queries){// Print out the ID and name of eachfor(leti=0;i < queries.queries.length;i++){constquery=queries.queries[i];console.log('Found query with ID %s and name "%s".',query.queryId,query.metadata.title,);}}}catch(e){// TODO (Developer) - Handle exceptionconsole.log("Failed with error: %s",e.error);}}
Membuat dan menjalankan kueri
Contoh ini membuat dan menjalankan kueri DBM baru.
/** * Create and run a new DBM Query */functioncreateAndRunQuery(){letresult;letexecution;//We leave the default date range blank for the report run to//use the value defined during query creationconstdefaultDateRange={};constpartnerId="1234567";//Replace with your Partner IDconstquery={metadata:{title:"Apps Script Example Report",dataRange:{range:"YEAR_TO_DATE",},format:"CSV",},params:{type:"STANDARD",groupBys:["FILTER_PARTNER","FILTER_PARTNER_NAME","FILTER_ADVERTISER","FILTER_ADVERTISER_NAME",],filters:[{type:"FILTER_PARTNER",value:partnerId}],metrics:["METRIC_IMPRESSIONS"],},schedule:{frequency:"ONE_TIME",},};try{result=DoubleClickBidManager.Queries.create(query);if(result.queryId){console.log('Created query with ID %s and name "%s".',result.queryId,result.metadata.title,);execution=DoubleClickBidManager.Queries.run(defaultDateRange,result.queryId,);if(execution.key){console.log('Created query report with query ID %s and report ID "%s".',execution.key.queryId,execution.key.reportId,);}}}catch(e){// TODO (Developer) - Handle exceptionconsole.log(e);console.log("Failed with error: %s",e.error);}}
Mengambil laporan terbaru untuk kueri DBM
Contoh ini mengambil laporan terbaru untuk kueri DBM dan mencatat kontennya.
/** * Fetches a report file */functionfetchReport(){constqueryId="1234567";// Replace with your query ID.constorderBy="key.reportId desc";try{constreport=DoubleClickBidManager.Queries.Reports.list(queryId,{orderBy:orderBy,});if(report.reports){constfirstReport=report.reports[0];if(firstReport.metadata.status.state==="DONE"){constreportFile=UrlFetchApp.fetch(firstReport.metadata.googleCloudStoragePath,);console.log("Printing report content to log...");console.log(reportFile.getContentText());}else{console.log("Report status is %s, and is not available for download",firstReport.metadata.status.state,);}}}catch(e){// TODO (Developer) - Handle exceptionconsole.log(e);console.log("Failed with error: %s",e.error);}}
[[["Mudah dipahami","easyToUnderstand","thumb-up"],["Memecahkan masalah saya","solvedMyProblem","thumb-up"],["Lainnya","otherUp","thumb-up"]],[["Informasi yang saya butuhkan tidak ada","missingTheInformationINeed","thumb-down"],["Terlalu rumit/langkahnya terlalu banyak","tooComplicatedTooManySteps","thumb-down"],["Sudah usang","outOfDate","thumb-down"],["Masalah terjemahan","translationIssue","thumb-down"],["Masalah kode / contoh","samplesCodeIssue","thumb-down"],["Lainnya","otherDown","thumb-down"]],["Terakhir diperbarui pada 2025-11-28 UTC."],[],[]]