我正在尝试连接到google ads api,但是无法使用google提供的代码示例创建google ads会话。
我正在使用AdwordsSession类,但我认为这已经过时了。
File propertiesFile = new File("ads.properties.txt");
Credential oAuth2Credential = new OfflineCredentials.Builder().forApi(Api.ADWORDS).fromFile(propertiesFile).build().generateCredential();
AdWordsSession session = new AdWordsSessions.Builder().fromFile().withOAuth2Credential(oAuth2Credential).build();
我看到一条错误消息 “ ads.properties文件中的配置无效。例外:必须在/[...some path ..] / ads.properties.txt中将客户端ID设置为api.adwords.clientId。”
但是在我的ads.properties文件中,它显示为“ api.googleads.clientId”,这似乎是“ api.adwords.clientId”的较旧版本。