ไลบรารีจะค้นหาไฟล์การกำหนดค่าใน
System.getProperty("user.home") + "/searchads360.properties"
รูปแบบของไฟล์การกำหนดค่าคือรูปแบบของไฟล์ 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();
คุณสามารถทำการเปลี่ยนแปลงเพิ่มเติมได้ในขณะรันไทม์โดยใช้วิธีการกำหนดค่าอื่นๆ ของ Builder ก่อนที่จะเรียกใช้ build()
หากคุณกำลังตรวจสอบสิทธิ์ในฐานะบัญชีดูแลจัดการ คุณต้องระบุข้อมูลต่อไปนี้เพิ่มเติม
api.searchads360.loginCustomerId --> Manager account ID (with hyphens removed).