Şu anda rapor türlerinin bir kısmını çevrimdışı raporlamadan anında raporlamaya taşıyoruz. Bir kullanıcı taşındıktan sonra, queries.list yanıtları mevcut anlık raporları içerir. Daha fazla bilgi edinmek için blog yayınımızı inceleyebilirsiniz.
Koleksiyonlar ile düzeninizi koruyun
İçeriği tercihlerinize göre kaydedin ve kategorilere ayırın.
Sorgu çalıştırmak için queries.run isteği gönderin.
queryId ve yürütme ayrıntıları. Bu istek,
Report kaynağı çalıştırıyor.
Sorgu çalıştırmak ve elde edilen rapor kaynak kimliğini almak için:
Java
// ID of query to run.LongqueryId=query-id;// Run the query.Reportreport=service.queries().run(queryId,null).execute();// Print the running report ID.System.out.printf("Report %s generated and running.%n",report.getKey().getReportId());
Python
# The ID of the existing query.query_id=query-id# Run the query.running_report=(service.queries().run(queryId=query_id).execute())# Print running report ID.print(f'Report {running_report["key"]["reportId"]} generated and running.')
PHP
// ID of the query to run.$queryId = query-id;// Run the query.$report = $this->service->queries->run( $queryId, new Google_Service_DoubleClickBidManager_RunQueryRequest(), array());// Print the running report IDprintf( 'Report %s generated and running.<br>', $report->getKey()->getReportId());
[[["Anlaması kolay","easyToUnderstand","thumb-up"],["Sorunumu çözdü","solvedMyProblem","thumb-up"],["Diğer","otherUp","thumb-up"]],[["İhtiyacım olan bilgiler yok","missingTheInformationINeed","thumb-down"],["Çok karmaşık / çok fazla adım var","tooComplicatedTooManySteps","thumb-down"],["Güncel değil","outOfDate","thumb-down"],["Çeviri sorunu","translationIssue","thumb-down"],["Örnek veya kod sorunu","samplesCodeIssue","thumb-down"],["Diğer","otherDown","thumb-down"]],["Son güncelleme tarihi: 2025-05-08 UTC."],[[["Send a `queries.run` request with the `queryId` and execution details to run a query which will return a running `Report` resource."],["Schedule `Query` resources for automatic execution using the `schedule` field during creation, and retrieve reports using `queries.reports.list`."],["The provided Java, Python, and PHP code snippets demonstrate how to run a query and retrieve the resulting report resource ID."]]],[]]