Remarketing Audiences: get

يجب تقديم تفويض.

الحصول على شريحة جمهور لتجديد النشاط التسويقي يمكن للمستخدم الوصول إليها اطّلِع على مثال.

الطلب

طلب HTTP

GET https://www.googleapis.com/analytics/v3/management/accounts/accountId/webproperties/webPropertyId/remarketingAudiences/remarketingAudienceId

المَعلمات

اسم المعلَمة القيمة الوصف
مَعلمات المسار
accountId string رقم تعريف حساب جمهور تجديد النشاط التسويقي المطلوب استرداده.
remarketingAudienceId string رقم تعريف جمهور تجديد النشاط التسويقي المطلوب استرداده.
webPropertyId string رقم تعريف الموقع الإلكتروني لجمهور تجديد النشاط التسويقي المطلوب استرداده.

التفويض

يتطلب هذا الطلب تفويضًا باستخدام نطاق واحد على الأقل من النطاقات التالية (مزيد من المعلومات عن المصادقة والترخيص).

النطاق
https://www.googleapis.com/auth/analytics.edit
https://www.googleapis.com/auth/analytics.readonly

نص الطلب

لا توفِّر نص طلب بهذه الطريقة.

الإجابة

في حال نجاحها، تعرض هذه الطريقة مورد شرائح جمهور تجديد النشاط التسويقي في نص الاستجابة.

أمثلة

ملاحظة: إنّ الأمثلة المرتبطة بالرموز والمتوفرة لهذه الطريقة لا تمثّل كل لغات البرمجة المتوافقة (يُرجى مراجعة صفحة مكتبات البرامج للاطّلاع على قائمة باللغات المتوافقة).

Java

تستخدم مكتبة عملاء Java.

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

/*
 * This request gets an existing Remarketing Audience.
 */
try {
  RemarketingAudience audience = analytics.management().remarketingAudience()
      .get("123456", "UA-123456-1", "QRSTUVABCD123").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 Remarketing Audiences Developer Guide for details.
 */

/*
 * This request gets an existing Remarketing Audience.
 */
try {
  Google_Service_Analytics_RemarketingAudience $audience = $analytics->management_remarketingAudience->get($accountId, $propertyId, $remarketingAudienceId);
} 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 Remarketing Audiences Developer Guide for details.

# This request gets an existing Remarketing Audience.
try:
  audience = analytics.management().remarketingAudience().get(
      accountId='123456',
      webPropertyId='UA-123456-1',
      remarketingAudienceId='122333444455555'
  ).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 gets an existing Remarketing Audience.
 */
function getRemarketingAudience(accountId, propertyId, audienceId) {
  let request = gapi.client.analytics.management.remarketingAudience.get(
    {
      'accountId': accountId,
      'webPropertyId': propertyId,
      'remarketingAudienceId': audienceId
    });
  request.execute(function (response) { /* Handle the response. */ });
}