ไลบรารีจะค้นหาไฟล์การกําหนดค่าใน System.getProperty("user.home") + "/searchads360.properties"
รูปแบบของไฟล์การกําหนดค่าคือไฟล์พร็อพเพอร์ตี้ของ Java ที่มีคู่คีย์-ค่า คีย์ที่รองรับจะแตกต่างกันไปตามขั้นตอนการตรวจสอบสิทธิ์ที่เลือก
คีย์ที่รองรับสำหรับขั้นตอนในเดสก์ท็อปและแอปพลิเคชันบนเว็บ
หากคุณใช้ขั้นตอนการสมัครบนเดสก์ท็อปหรือเว็บ คีย์ที่รองรับมีดังนี้
# Credential for accessing Google's OAuth servers.
# Provided by console.cloud.google.com.
api.searchads360.clientId=INSERT_CLIENT_ID_HERE
# Credential for accessing Google's OAuth servers.
# Provided by console.cloud.google.com.
api.searchads360.clientSecret=INSERT_CLIENT_SECRET_HERE
# Renewable OAuth credential associated with 1 or more Search Ads accounts.
api.searchads360.refreshToken=INSERT_REFRESH_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.searchads360.loginCustomerId=INSERT_LOGIN_CUSTOMER_ID_HERE
การรวมแนวทางการกำหนดค่า
SearchAds360Client
และเครื่องมือสร้างรองรับการรวมกลยุทธ์การกําหนดค่าที่แตกต่างกัน เช่น คุณสามารถใช้ไฟล์พร็อพเพอร์ตี้เพื่อกําหนดค่าข้อมูลเข้าสู่ระบบของอินสแตนซ์และแอตทริบิวต์อื่นๆ โดยใช้ข้อมูลโค้ดต่อไปนี้
SearchAds360Client searchAds360Client = SearchAds360Client.newBuilder()
.fromPropertiesFile()
.build();
คุณทําการเปลี่ยนแปลงเพิ่มเติมได้เมื่อรันไทม์โดยใช้เมธอดการกําหนดค่าอื่นๆ ของโปรแกรมสร้างก่อนเรียกใช้ build()
หากตรวจสอบสิทธิ์เป็นบัญชีดูแลจัดการ คุณต้องระบุข้อมูลต่อไปนี้ด้วย
api.searchads360.loginCustomerId --> Manager account ID (with hyphens removed).