ディスプレイ&ビデオ 360 のディスプレイ&ビデオ 360 とVideo 360 の UI や APIたとえば、エンドユーザーは日次レポートに昨日の 合計費用を示す月次レポートなどです
スケジュール設定されたレポートを作成する
ディスプレイ &ビデオ 360 で動画 360 のレポート インターフェース
queries.create
API メソッドを使用します。詳しくは、
ディスプレイと動画 360 のレポート機能と新しいレポートの作成方法は、
[ディスプレイと動画 360 のサポートサイトをご覧ください。
レポートは、UI の Repeats
フィールドと
API の schedule
フィールド。これらのフィールドは
適切な時間間隔を指定します。
適切なフィールドが設定されると、このレポートはそのスケジュールで実行され、 生成されたレポートをダウンロードできます。
スケジュール設定されたレポートへのアクセス
スケジュール設定されたレポートは、シンプルな CSV ファイルとして生成され、自動的に保存される 安全に保管する方法を確認しました。ただし、 これらのファイルが直接格納されている Google Cloud Storage バケット。代わりに、 ディスプレイ &ビデオ 360 からVideo 360 の UI または取得 Google の API から入手した事前承認済み URL を使用して、プログラマティックに できます。
API を使用してレポート ファイルをダウンロードする例を以下に示します。この
たとえば、queries.reports.list
は、
最新のレポートを取得する orderBy
パラメータ
表示されます。次に、
「Report.reportMetadata.googleCloudStoragePath
」フィールド:
を使用してレポート ファイルを見つけ、その内容をローカルの CSV ファイルにダウンロードします。
Java
必要なインポート:
import com.google.api.client.googleapis.media.MediaHttpDownloader; import com.google.api.client.googleapis.util.Utils; import com.google.api.client.http.GenericUrl; import com.google.api.services.doubleclickbidmanager.DoubleClickBidManager; import com.google.api.services.doubleclickbidmanager.model.ListReportsResponse; import com.google.api.services.doubleclickbidmanager.model.Report; import java.io.FileOutputStream; import java.io.OutputStream;
サンプルコード:
long queryId = query-id; // Call the API, listing the reports under the given queryId from most to // least recent. ListReportsResponse reportListResponse = service .queries() .reports() .list(queryId) .setOrderBy("key.reportId desc") .execute(); // Iterate over returned reports, stopping once finding a report that // finished generating successfully. Report mostRecentReport = null; if (reportListResponse.getReports() != null) { for (Report report : reportListResponse.getReports()) { if (report.getMetadata().getStatus().getState().equals("DONE")) { mostRecentReport = report; break; } } } else { System.out.format("No reports exist for query Id %s.\n", queryId); } // Download report file of most recent finished report found. if (mostRecentReport != null) { // Retrieve GCS URL from report object. GenericUrl reportUrl = new GenericUrl(mostRecentReport.getMetadata().getGoogleCloudStoragePath()); // Build filename. String filename = mostRecentReport.getKey().getQueryId() + "_" + mostRecentReport.getKey().getReportId() + ".csv"; // Download the report file. try (OutputStream output = new FileOutputStream(filename)) { MediaHttpDownloader downloader = new MediaHttpDownloader(Utils.getDefaultTransport(), null); downloader.download(reportUrl, output); } System.out.format("Download of file %s complete.\n", filename); } else { System.out.format( "There are no completed report files to download for query Id %s.\n", queryId); }
Python
必要なインポート:
from contextlib import closing from six.moves.urllib.request import urlopen
サンプルコード:
query_id = query-id # Call the API, listing the reports under the given queryId from most to # least recent. response = service.queries().reports().list(queryId=query_id, orderBy="key.reportId desc").execute() # Iterate over returned reports, stopping once finding a report that # finished generating successfully. most_recent_report = None if response['reports']: for report in response['reports']: if report['metadata']['status']['state'] == 'DONE': most_recent_report = report break else: print('No reports exist for query Id %s.' % query_id) # Download report file of most recent finished report found. if most_recent_report != None: # Retrieve GCS URL from report object. report_url = most_recent_report['metadata']['googleCloudStoragePath'] # Build filename. output_file = '%s_%s.csv' % (report['key']['queryId'], report['key']['reportId']) # Download the report file. with open(output_file, 'wb') as output: with closing(urlopen(report_url)) as url: output.write(url.read()) print('Download of file %s complete.' % output_file) else: print('There are no completed report files to download for query Id %s.' % query_id)
PHP
$queryId = query-id; // Call the API, listing the reports under the given queryId from most to // least recent. $optParams = array('orderBy' => "key.reportId desc"); $response = $service->queries_reports->listQueriesReports($queryId, $optParams); // Iterate over returned reports, stopping once finding a report that // finished generating successfully. $mostRecentReport = null; if (!empty($response->getReports())) { foreach ($response->getReports() as $report) { if ($report->metadata->status->state == "DONE") { $mostRecentReport = $report; break; } } } else { printf('<p>No reports exist for query ID %s.</p>', $queryId); } // Download report file of most recent finished report found. if ($mostRecentReport != null) { // Build filename. $filename = $mostRecentReport->key->queryId . '_' . $mostRecentReport->key->reportId . '.csv'; // Download the report file. file_put_contents($filename, fopen($mostRecentReport->metadata->googleCloudStoragePath, 'r')); printf('<p>Download of file %s complete.</p>', $filename); } else { printf('<p>There are no completed report files to download for query Id %s.</p>', $queryId); }