कॉन्फ़िगरेशन

लाइब्रेरी इसमें कॉन्फ़िगरेशन फ़ाइल ढूंढती है System.getProperty("user.home") + "/ads.properties". आप इसे बदल सकते हैं इसका इस्तेमाल करके GoogleAdsClient को बनाते समय, रनटाइम के दौरान पाथ और फ़ाइल का नाम इनमें से कोई एक तरीका अपनाएं:

  • fromPropertiesFile(PATH_TO_CONFIG_FILE) पर कॉल करें, जहां PATH_TO_CONFIG_FILE आपकी कॉन्फ़िगरेशन फ़ाइल का पाथ और फ़ाइल का नाम है.
  • एनवायरमेंट वैरिएबल GOOGLE_ADS_CONFIGURATION_FILE_PATH को अपनी कॉन्फ़िगरेशन फ़ाइल का पाथ और फ़ाइल नाम चुनें और फिर fromPropertiesFile().

कॉन्फ़िगरेशन फ़ाइल का फ़ॉर्मैट Java के फ़ॉर्मैट में है प्रॉपर्टी कुंजी मान पेयर की फ़ाइल है. काम करने वाली कुंजियां, चुने गए विकल्पों के हिसाब से अलग-अलग होती हैं पुष्टि करने की प्रक्रिया.

डेस्कटॉप और वेब ऐप्लिकेशन फ़्लो के लिए इस्तेमाल की जा सकने वाली कुंजियां

अगर आप डेस्कटॉप का इस्तेमाल कर रहे हैं या web ऐप्लिकेशन फ़्लो, काम करने वाली कुंजियां ये हैं:

# Credential for accessing Google's OAuth servers.
# Provided by console.cloud.google.com.
api.googleads.clientId=INSERT_CLIENT_ID_HERE

# Credential for accessing Google's OAuth servers.
# Provided by console.cloud.google.com.
api.googleads.clientSecret=INSERT_CLIENT_SECRET_HERE

# Renewable OAuth credential associated with 1 or more Google Ads accounts.
api.googleads.refreshToken=INSERT_REFRESH_TOKEN_HERE

# Token which provides access to the Google Ads API in general. It does not
# grant access to any particular ad account (OAuth is used for this purpose).
api.googleads.developerToken=INSERT_DEVELOPER_TOKEN_HERE

# Required for manager accounts only: Specify the login customer ID used to
# authenticate API calls. This will be the customer ID of the authenticated
# manager account. You can also specify this later in code if your application
# uses multiple manager account + OAuth pairs.
#
# api.googleads.loginCustomerId=INSERT_LOGIN_CUSTOMER_ID_HERE

# Only required if explicitly instructed by the service documentation.
# api.googleads.linkedCustomerId=INSERT_LINKED_CUSTOMER_ID_HERE

# Maximum allowed response payload size, in bytes.
# Customize this to allow response sizes for GoogleAdsService.search and
# GoogleAdsService.searchStream API calls to exceed the default limit of 64MB.
# api.googleads.maxInboundMessageBytes=INSERT_MAX_INBOUND_MESSAGE_BYTES_HERE

सेवा खातों के लिए इस्तेमाल की जा सकने वाली कुंजियां

अगर सेवा खाते का इस्तेमाल किया जा रहा है इस्तेमाल करते हैं, तो काम करने वाली कुंजियां ये हैं:

# Path to the service account secrets file in JSON format.
# Provided by console.cloud.google.com.
api.googleads.serviceAccountSecretsPath=INSERT_PATH_TO_JSON_HERE

# Email address of the user to impersonate.
# This should be a user who has access to your Google Ads account and is in the same
# Google Apps Domain as the service account.
api.googleads.serviceAccountUser=INSERT_USER_EMAIL_ADDRESS_HERE

# Token which provides access to the Google Ads API in general. It does not
# grant access to any particular ad account (OAuth is used for this purpose).
api.googleads.developerToken=INSERT_DEVELOPER_TOKEN_HERE

# Required for manager accounts only: Specify the login customer ID used to
# authenticate API calls. This will be the customer ID of the authenticated
# manager account. You can also specify this later in code if your application
# uses multiple manager account + OAuth pairs.
#
# api.googleads.loginCustomerId=INSERT_LOGIN_CUSTOMER_ID_HERE

एनवायरमेंट वैरिएबल का इस्तेमाल करना

लाइब्रेरी में, एनवायरमेंट वैरिएबल के ऐसे सभी वैरिएबल काम करते हैं जो Google Ads API में मौजूद होते हैं क्लाइंट लाइब्रेरी. नीचे दी गई टेबल ऐसा एनवायरमेंट वैरिएबल जो हर कॉन्फ़िगरेशन फ़ाइल प्रॉपर्टी से जुड़ा होता है.

कॉन्फ़िगरेशन फ़ाइल की प्रॉपर्टी एनवायरमेंट वैरिएबल
api.googleads.developerToken GOOGLE_ADS_DEVELOPER_TOKEN
api.googleads.clientId GOOGLE_ADS_CLIENT_ID
api.googleads.clientSecret GOOGLE_ADS_CLIENT_SECRET
api.googleads.refreshToken GOOGLE_ADS_REFRESH_TOKEN
api.googleads.serviceAccountSecretsPath GOOGLE_ADS_JSON_KEY_FILE_PATH
api.googleads.serviceAccountUser GOOGLE_ADS_IMPERSONATED_EMAIL
api.googleads.loginCustomerId GOOGLE_ADS_LOGIN_CUSTOMER_ID
api.googleads.linkedCustomerId GOOGLE_ADS_LINKED_CUSTOMER_ID
api.googleads.maxInboundMessageBytes GOOGLE_ADS_MAX_INBOUND_MESSAGE_BYTES

सही एनवायरमेंट वैरिएबल सेट करने के बाद, अपनी बिल्डर पर fromEnvironment() को कॉल करके GoogleAdsClient.

GoogleAdsClient googleAdsClient = GoogleAdsClient.newBuilder()
  .fromEnvironment()
  .build();

कॉन्फ़िगरेशन के तरीके जोड़ना

GoogleAdsClient और इसके बिल्डर में अलग-अलग कॉन्फ़िगरेशन को एक साथ इस्तेमाल किया जा सकता है रणनीतियां. उदाहरण के लिए, एनवायरमेंट वैरिएबल का इस्तेमाल करके, इंस्टेंस के क्रेडेंशियल और इसका इस्तेमाल करने वाले दूसरे एट्रिब्यूट के लिए प्रॉपर्टी फ़ाइल स्निपेट शामिल करें.

GoogleAdsClient googleAdsClient = GoogleAdsClient.newBuilder()
    .fromEnvironment()
    .fromPropertiesFile()
    .build();

इस उदाहरण में, क्लाइंट लाइब्रेरी, प्रॉपर्टी फ़ाइल की वैल्यू का इस्तेमाल करेगी के लिए, जिसे अपने एनवायरमेंट वैरिएबल और प्रॉपर्टी फ़ाइल में डाला गया है. विपरीत व्यवहार के लिए, बस fromEnvironment() से पहले fromPropertiesFile().

बिल्डर के अन्य कॉन्फ़िगरेशन का इस्तेमाल करके, रनटाइम के दौरान ज़्यादा बदलाव किए जा सकते हैं build() को कॉल करने से पहले का तरीका.