Unsampled Reports: insert

ต้องมีการให้สิทธิ์

สร้างรายงานแบบไม่สุ่มตัวอย่างใหม่ ดูตัวอย่าง

ส่งคำขอ

คำขอ HTTP

POST https://www.googleapis.com/analytics/v3/management/accounts/accountId/webproperties/webPropertyId/profiles/profileId/unsampledReports

พารามิเตอร์

ชื่อพารามิเตอร์ ค่า คำอธิบาย
พารามิเตอร์เส้นทาง
accountId string รหัสบัญชีที่จะสร้างรายงานที่ไม่ได้เก็บตัวอย่าง
profileId string ดูรหัส (โปรไฟล์) เพื่อสร้างรายงานที่ไม่ได้เก็บตัวอย่าง
webPropertyId string รหัสเว็บพร็อพเพอร์ตี้สำหรับสร้างรายงานแบบไม่สุ่มตัวอย่าง

การให้สิทธิ์

คำขอนี้ต้องได้รับการให้สิทธิ์อย่างน้อย 1 ขอบเขตต่อไปนี้ (อ่านเพิ่มเติมเกี่ยวกับการตรวจสอบสิทธิ์และการให้สิทธิ์)

ขอบเขต
https://www.googleapis.com/auth/analytics
https://www.googleapis.com/auth/analytics.edit

เนื้อหาของคำขอ

ในเนื้อหาคำขอ ให้ระบุทรัพยากรmanagement.unsampledReport พร้อมกับพร็อพเพอร์ตี้ต่อไปนี้

ชื่อพร็อพเพอร์ตี้ ค่า คำอธิบาย Notes
พร็อพเพอร์ตี้ที่จำเป็น
end-date string วันที่สิ้นสุดของรายงานที่ไม่ได้เก็บตัวอย่าง เขียนได้
metrics string เมตริกสำหรับรายงานที่ไม่ได้เก็บตัวอย่าง เขียนได้
start-date string วันที่เริ่มต้นของรายงานที่ไม่ได้เก็บตัวอย่าง เขียนได้
title string ชื่อของรายงานที่ไม่ได้เก็บตัวอย่าง เขียนได้
พร็อพเพอร์ตี้ที่ไม่บังคับ
dimensions string มิติข้อมูลสำหรับรายงานที่ไม่ได้เก็บตัวอย่าง เขียนได้
filters string ตัวกรองสำหรับรายงานที่ไม่ได้เก็บตัวอย่าง เขียนได้
segment string กลุ่มสำหรับรายงานที่ไม่ได้เก็บตัวอย่าง เขียนได้

คำตอบ

หากสำเร็จ เมธอดนี้จะแสดงทรัพยากรmanagement.unsampledReport ในเนื้อหาการตอบกลับ

ตัวอย่าง

หมายเหตุ: ตัวอย่างโค้ดที่มีสำหรับวิธีการนี้ไม่ได้แสดงถึงภาษาโปรแกรมที่รองรับทั้งหมด (ดูรายการภาษาที่รองรับได้ในหน้าไลบรารีของไคลเอ็นต์)

Java

ใช้ไลบรารีของไคลเอ็นต์ Java

/*
 * Note: This code assumes you have an authorized Analytics service object.
 * See the Unsampled Reports Developer Guide for details.
 */

/*
 * This example creates a new unsampled report.
 */
UnsampledReport body = new UnsampledReport();
body.setTitle("A test report");
body.setStartDate("2013-01-01");
body.setEndDate("2013-03-31");
body.setMetrics("ga:pageviews,ga:bounces");
body.setDimensions("ga:browser");
body.setFilters("ga:bounces>=100");
body.setSegment("gaid:-1");
try {
  analytics.management().unsampledReports().insert("123456",
      "UA-123456-1",
      "7654321",
      body
      ).execute();
} catch (GoogleJsonResponseException e) {
  System.err.println("There was a service error: "
      + e.getDetails().getCode() + " : "
      + e.getDetails().getMessage());
}

PHP

ใช้ไลบรารีของไคลเอ็นต์ PHP

/**
 * Note: This code assumes you have an authorized Analytics service object.
 * See the Unsampled Reports Developer Guide for details.
 */

/**
 * This request creates a new Unsampled Report.
 */

// Construct an unsampled report object.
$unsampledReport = new Google_Service_Analytics_UnsampledReport();
$unsampledReport->setTitle('A test report');
$unsampledReport['start-date'] = '2013-01-01';
$unsampledReport['end-date'] = '2013-03-31';
$unsampledReport->setMetrics('ga:pageviews,ga:bounces');
$unsampledReport->setDimensions('ga:browser');
$unsampledReport->setFilters('ga:bounces>=100');
$unsampledReport->setSegment('gaid:-1');

try {
  $analytics->management_unsampledReports->insert('123456', 'UA-123456-1',
      '7654321', $unsampledReport);

} catch (apiServiceException $e) {
  print 'There was an Analytics API service error '
      . $e->getCode() . ':' . $e->getMessage();

} catch (apiException $e) {
  print 'There was a general API error '
      . $e->getCode() . ':' . $e->getMessage();
}

Python

ใช้ไลบรารีของไคลเอ็นต์ Python

# Note: This code assumes you have an authorized Analytics service object.
# See the Unsampled Reports Developer Guide for details.


# This request creates an new unsampled report.
try:
  reports = analytics.management().unsampledReports().insert(
      accountId='123456',
      webPropertyId='UA-123456-1',
      profileId='7654321',
      body={
          'title': 'A test Report',
          'start-date': '2013-01-01',
          'end-date': '2013-01-31',
          'metrics': 'ga:pageviews,ga:bounces',
          'dimensions': 'ga:browser',
          'filters': 'ga:bounces>=100',
          'segment': 'gaid::-1'
      }
  ).execute()

except TypeError, error:
  # Handle errors in constructing a query.
  print 'There was an error in constructing your query : %s' % error

except HttpError, error:
  # Handle API errors.
  print ('There was an API error : %s : %s' %
         (error.resp.status, error.resp.reason))

JavaScript

ใช้ไลบรารีของไคลเอ็นต์ JavaScript

/*
 * Note: This code assumes you have an authorized Analytics client object.
 * See the Unsampled Reports Developer Guide for details.
 */

/*
 * This request creates an new unsampled report.
 */
function insertView() {
  var request = gapi.client.analytics.management.unsampledReports.insert(
    {
      'accountId': '123456',
      'webPropertyId': 'UA-123456-1',
      'profileId': '7654321',
      'resource': {
        'title': 'A test Report',
        'start-date': '2013-01-01',
        'end-date': '2013-01-31',
        'metrics': 'ga:pageviews,ga:bounces',
        'dimensions': 'ga:browser',
        'filters': 'ga:bounces>=100',
        'segment': 'gaid::-1'
      }
    });
  request.execute(function (response) { /* Handle the response. */ });
}