Google Ads Links: get

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

แสดงลิงก์ผลิตภัณฑ์และบริการบนอินเทอร์เน็ต-Google Ads ที่ผู้ใช้เข้าถึงได้ ลองใช้เลยหรือดูตัวอย่าง

ส่งคำขอ

คำขอ HTTP

GET https://www.googleapis.com/analytics/v3/management/accounts/accountId/webproperties/webPropertyId/entityAdWordsLinks/webPropertyAdWordsLinkId

พารามิเตอร์

ชื่อพารามิเตอร์ ค่า คำอธิบาย
พารามิเตอร์เส้นทาง
accountId string รหัสของบัญชีที่มีผลิตภัณฑ์และบริการบนอินเทอร์เน็ตนั้นอยู่
webPropertyAdWordsLinkId string รหัสลิงก์ผลิตภัณฑ์และบริการบนอินเทอร์เน็ต - Google Ads
webPropertyId string รหัสเว็บพร็อพเพอร์ตี้ที่จะดึงข้อมูลลิงก์ Google Ads

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

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

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

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

อย่าแสดงเนื้อหาของคำขอด้วยวิธีนี้

คำตอบ

หากสำเร็จ เมธอดนี้จะแสดงแหล่งข้อมูลลิงก์ Google Ads ในเนื้อหาการตอบสนอง

ตัวอย่าง

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

Java

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

/*
 * Note: this code assumes you have an authorized Analytics service object.
 * See the Google Ads Links Developer Guide for details.
 */

/*
 * This request gets an existing Google Ads Link.
 */
try{
  EntityAdWordsLink adWordsLink = analytics.management().
      webPropertyAdWordsLinks().get("123456",
          "UA-123456-1", "AABBCCDDEEFFGG").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 Google Ads Links Developer Guide for details.
 */

/**
 * This request gets an existing Google Ads Link.
 */

try {
  $adWordsLink = $analytics->management_webPropertyAdWordsLinks->get(
      '123456', 'UA-123456-1', 'AABBCCDDEEFFGG');

} 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 Google Ads Links Developer Guide for details.

# This request gets an existing Google Ads Link.
try:
  adWordsLink = analytics.management().webPropertyAdWordsLinks().get(
      accountId='123456',
      webPropertyId='UA-123456-1',
      webPropertyAdWordsLinkId='AABBCCDDEEFFGG'
  ).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 Google Ads Links Developer Guide for details.
 */

/*
 * This request gets an existing Google Ads Link.
 */
function getAdWordsLink() {
  var request = gapi.client.analytics.management.webPropertyAdWordsLinks.get({
    'accountId': '123456',
    'webPropertyId': 'UA-123456-1',
    'webPropertyAdWordsLinkId': '11112222233334444'
  });
  request.execute(function (response) { // Handle the response. });
}

ลองใช้เลย

ใช้ API Explorer ด้านล่างเพื่อเรียกใช้เมธอดนี้ในข้อมูลสดและดูการตอบสนอง หรือลองใช้เครื่องมือสำรวจแบบสแตนด์อโลน