Hi,
I using the Java SDK with v201710,
I have a question about to get the Campaign(1336308160) infos,
when I tried to get a Campaign(1336308160) info by this selector,
Selector{fields=[Id, Name], ordering=[], predicates=[Predicate{field=Id, operator=IN, values=[1336308160]}]}
I found the campaign is existed, but I can not fetch it by SDK, I don't know why ?

then I download a AdGroups report(ADGROUP_PERFORMANCE_REPORT) of the Campaign(1336308160) by SDK,
its succeed to download (Include zero impression == true),
if I can not access campaign info, why download adGroup report succeed ?
and how to fix it to get the campaign info ?
AdWordsServicesInterface adWordsServices = AdWordsServices.getInstance();
CampaignService campaignService = adWordsServices.get(adWordsSession, CampaignServiceInterface.class);
Selector selector = new SelectorBuilder()
.fields(CampaignField.Id, CampaignField.Name)
.in(CampaignField.Id, "1336308160")
.build();
CampaignPage campaignPage = campaignService.get(selector);
Sorry, English is not my native language,
thanks your help.