// Copyright 2016 Google Inc. All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. package adwords.axis.v201609.campaignmanagement; import com.google.api.ads.adwords.axis.factory.AdWordsServices; import com.google.api.ads.adwords.axis.utils.v201609.SelectorBuilder; import com.google.api.ads.adwords.axis.v201609.cm.Campaign; import com.google.api.ads.adwords.axis.v201609.cm.CampaignPage; import com.google.api.ads.adwords.axis.v201609.cm.CampaignServiceInterface; import com.google.api.ads.adwords.axis.v201609.cm.Label; import com.google.api.ads.adwords.axis.v201609.cm.Selector; import com.google.api.ads.adwords.lib.client.AdWordsSession; import com.google.api.ads.adwords.lib.selectorfields.v201609.cm.CampaignField; import com.google.api.ads.common.lib.auth.OfflineCredentials; import com.google.api.ads.common.lib.auth.OfflineCredentials.Api; import com.google.api.client.auth.oauth2.Credential; import com.google.common.base.Function; import com.google.common.base.Joiner; import com.google.common.collect.Lists; /** * This example gets all campaigns with a specific label. To add a label to campaigns, * run AddCampaignLabels.java. * * <p>Credentials and properties in {@code fromFile()} are pulled from the * "ads.properties" file. See README for more info. */ public class GetCampaignsByLabel { private static final int PAGE_SIZE = 100; public static void main(String[] args) throws Exception { // Generate a refreshable OAuth2 credential. Credential oAuth2Credential = new OfflineCredentials.Builder() .forApi(Api.ADWORDS) .fromFile() .build() .generateCredential(); // Construct an AdWordsSession. AdWordsSession session = new AdWordsSession.Builder() .fromFile() .withOAuth2Credential(oAuth2Credential) .build(); AdWordsServices adWordsServices = new AdWordsServices(); Long labelId = Long.valueOf("INSERT_LABEL_ID_HERE"); runExample(adWordsServices, session, labelId); } public static void runExample( AdWordsServices adWordsServices, AdWordsSession session, Long labelId) throws Exception { // Get the CampaignService. CampaignServiceInterface campaignService = adWordsServices.get(session, CampaignServiceInterface.class); int offset = 0; // Create selector. SelectorBuilder builder = new SelectorBuilder(); Selector selector = builder .fields(CampaignField.Id, CampaignField.Name, CampaignField.Labels) // Labels filtering is performed by ID. You can use containsAny to select campaigns with // any of the label IDs, containsAll to select campaigns with all of the label IDs, or // containsNone to select campaigns with none of the label IDs. .containsAny(CampaignField.Labels, labelId.toString()) .orderAscBy(CampaignField.Name) .offset(offset) .limit(PAGE_SIZE) .build(); CampaignPage page = null; do { // Get all campaigns. page = campaignService.get(selector); // Display campaigns. if (page.getEntries() != null) { for (Campaign campaign : page.getEntries()) { String labels = Joiner.on(", ").join(Lists.transform( Lists.newArrayList(campaign.getLabels()), new Function<Label, String>() { @Override public String apply(Label label) { return String.format("%d/%s", label.getId(), label.getName()); } })); System.out.printf("Campaign found with name '%s' and ID %d and labels: %s.%n", campaign.getName(), campaign.getId(), labels); } } else { System.out.println("No campaigns were found."); } offset += PAGE_SIZE; selector = builder.increaseOffsetBy(PAGE_SIZE).build(); } while (offset < page.getTotalNumEntries()); } }