سرد الحسابات التي يمكن الوصول إليها

يمكنك تصنيف العملاء الذي يمكن الوصول إليهم باستخدام إجراء ListAccessibleCustomers في CustomerService. ومع ذلك، من الضروري فهم أي نوع من العملاء يتم عرضهم في هذا النوع من الطلبات.

تصنيف العملاء الذين يمكن الوصول إليهم هو أحد الطلبات القليلة في واجهة برمجة التطبيقات لإعداد التقارير في "إعلانات شبكة البحث 360" الذي لا يتطلّب منك تحديد الرقم التعريفي للعميل في الطلب، وسيتجاهل أي معرّف login-customer-id.

تستند قائمة العملاء الناتجة إلى بيانات اعتماد OAuth الخاصة بك. ويعرض الطلب قائمة بجميع الحسابات التي يمكنك اتخاذ إجراء بشأنها مباشرةً وفقًا لبيانات الاعتماد الحالية. لا يتضمن ذلك بالضرورة جميع الحسابات داخل التسلسل الهرمي للحساب، بل سيتضمن فقط تلك التي تمت فيها إضافة المستخدم المصادق عليه مع منحه حقوق مشرف أو حقوق أخرى في الحساب.

لنفترض أنّك مستخدم في A ومشرف على M1 و C3 في التسلسلين الهرميين الواردين في الصورة أعلاه. إذا أردت إجراء مكالمة مع واجهة برمجة التطبيقات لإعداد التقارير في "إعلانات شبكة البحث 360"، على سبيل المثال، SearchAds360Service، يمكنك الوصول إلى معلومات حسابات M1 وC1 وC2 وC3. ومع ذلك، فإنّ المكالمة الواردة إلى CustomerService.ListAccessibleCustomers ستعرض فقط M1 و C3 لأنّهما الحسابَين الوحيدَين اللّذين يمكن للمستخدم A أن يصل إليهما مباشرةً.

في ما يلي مثال رمز برمجي يوضّح استخدام إجراء CustomerService.ListAccessibleCustomers التالي:

Java

// Copyright 2022 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//     https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

package sample;

import com.google.ads.searchads360.v0.lib.SearchAds360Client;
import com.google.ads.searchads360.v0.services.CustomerServiceClient;
import com.google.ads.searchads360.v0.services.ListAccessibleCustomersRequest;
import com.google.ads.searchads360.v0.services.ListAccessibleCustomersResponse;

/** List all customers that can be accessed by the authenticated Google account. */
public class ListAccessibleCustomers {

  public static void main(String[] args) {
    try {
      // Creates a SearchAds360Client with local properties file
      final SearchAds360Client searchAds360Client =
          SearchAds360Client.newBuilder().fromPropertiesFile().build();
      // Creates the Customer Service Client.
      CustomerServiceClient client = searchAds360Client.createCustomerServiceClient();
      new ListAccessibleCustomers().runExample(client);
    } catch (Exception exception) {
      System.err.printf("Failed with exception: %s%n", exception);
      exception.printStackTrace();
      System.exit(1);
    }
  }

  private void runExample(CustomerServiceClient customerServiceClient) {
    ListAccessibleCustomersResponse response =
        customerServiceClient.listAccessibleCustomers(
            ListAccessibleCustomersRequest.getDefaultInstance());

    System.out.printf("Total results: %d%n", response.getResourceNamesCount());

    for (String customerResourceName : response.getResourceNamesList()) {
      System.out.printf("Customer resource name: %s%n", customerResourceName);
    }
  }
}

تنزيل ListAccessibleCustomers.java

Python

#!/usr/bin/env python
# Copyright 2022 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""Lists all accessible customers."""

import traceback
from util_searchads360 import SearchAds360Client


def main(client) -> None:
  customer_service = client.get_customer_service()

  # Issues a list accessible customer request.
  accessible_customers = customer_service.list_accessible_customers()
  result_total = len(accessible_customers.resource_names)
  print(f"Total results: {result_total}")

  resource_names = accessible_customers.resource_names
  for resource_name in resource_names:
    print(f'Accessible customer resource name: "{resource_name}"')


if __name__ == "__main__":
  # SearchAds360Client will read the search-ads-360.yaml configuration file in
  # the home directory if none is specified.
  search_ads_360_client = SearchAds360Client.load_from_file()

  try:
    main(search_ads_360_client)
  except Exception:  # pylint: disable=broad-except
    traceback.print_exc()

تنزيل list_access_customers.py