// 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.v201607.express; import com.google.api.ads.adwords.axis.factory.AdWordsServices; import com.google.api.ads.adwords.axis.v201607.cm.Criterion; import com.google.api.ads.adwords.axis.v201607.cm.Language; import com.google.api.ads.adwords.axis.v201607.cm.Location; import com.google.api.ads.adwords.axis.v201607.cm.Money; import com.google.api.ads.adwords.axis.v201607.cm.Operator; import com.google.api.ads.adwords.axis.v201607.express.Creative; import com.google.api.ads.adwords.axis.v201607.express.ProductService; import com.google.api.ads.adwords.axis.v201607.express.Promotion; import com.google.api.ads.adwords.axis.v201607.express.PromotionOperation; import com.google.api.ads.adwords.axis.v201607.express.PromotionServiceInterface; import com.google.api.ads.adwords.axis.v201607.express.PromotionStatus; import com.google.api.ads.adwords.lib.client.AdWordsSession; 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.collect.Lists; import java.util.Arrays; import java.util.List; /** * This example adds a new promotion to an express business. To get promotions, run * GetPromotions.java. To get product/service suggestions, run GetProductServices.java. * * <p>Credentials and properties in {@code fromFile()} are pulled from the * "ads.properties" file. See README for more info. */ public class AddPromotion { 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 businessId = Long.valueOf("INSERT_BUSINESS_ID_HERE"); runExample(adWordsServices, session, businessId); } public static List<Promotion> runExample(AdWordsServices adWordsServices, AdWordsSession session, Long businessId) throws Exception { // Get the PromotionService PromotionServiceInterface promotionService = adWordsServices.get(session, PromotionServiceInterface.class); // PromotionService requires the businessId on the session session.setExpressBusinessId(businessId); // Set up the new Promotion Promotion marsTourPromotion = new Promotion(); Money budget = new Money(); budget.setMicroAmount(1000000L); marsTourPromotion.setName("Mars Tour Promotion " + System.currentTimeMillis()); marsTourPromotion.setStatus(PromotionStatus.PAUSED); marsTourPromotion.setDestinationUrl("http://www.example.com"); marsTourPromotion.setBudget(budget); marsTourPromotion.setCallTrackingEnabled(true); // Criteria List<Criterion> criteria = Lists.newArrayList(); // Criterion - Travel Agency product/service. See GetProductServices.java for an example // of how to get valid product/service settings. ProductService productService = new ProductService(); productService.setText("Travel Agency"); productService.setLocale("en_US"); criteria.add(productService); // Criterion - English language // The ID can be found in the documentation: // https://developers.google.com/adwords/api/docs/appendix/languagecodes Language language = new Language(); language.setId(1000L); criteria.add(language); // Criterion - State of California Location location = new Location(); location.setId(21137L); criteria.add(location); marsTourPromotion.setCriteria(criteria.toArray(new Criterion[criteria.size()])); // Creative Creative creative = new Creative("Standard Mars Trip", "Fly coach to Mars", "Free in-flight pretzels"); marsTourPromotion.setCreatives(new Creative[] {creative}); Promotion[] addedPromotions = promotionService.mutate( new PromotionOperation[] {new PromotionOperation(Operator.ADD, null, marsTourPromotion)}); System.out.printf("Added promotion ID %d with name '%s' to business ID %d%n", addedPromotions[0].getId(), addedPromotions[0].getName(), businessId); return Arrays.asList(addedPromotions); } }