我收到错误
错误| com.google.api.ads.adwords.awreporting.AwReporting | AwReporting]缺少所需选项:' file'
当我尝试运行AwReporting.java
答案 0 :(得分:0)
您必须向程序提供一些信息作为命令行参数才能运行(-file,-startDate,-endDate)。
解决方案1:
-file adword属性文件位置 -startDate 开始日期 -endDate end日期 强>
示例:
-file src / main / resources / aw-report-sample.properties -startDate 20160126 -endDate 20160127
解决方案2:
您可以使用AwReporting.java上main()函数第一行中的以下代码替换args变量。
args = new String[] {"-file","<adword property file location>","-startDate","<YYYYMMDD>","-endDate","<YYYYMMDD>"};
示例:
public static void main(String args[])
{
args = new String[] {"-file","src/main/resources/aw-report-sample.properties","-startDate","20160126","-endDate","20160127"};