google-adwords-api 0.18.1 → 0.18.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/COPYING +0 -0
- data/ChangeLog +7 -0
- data/README.md +8 -29
- data/adwords_api.yml +2 -0
- data/examples/v201506/reporting/parallel_report_download.rb +1 -3
- data/examples/v201509/reporting/parallel_report_download.rb +1 -3
- data/examples/v201601/reporting/parallel_report_download.rb +1 -3
- data/examples/v201603/account_management/create_account.rb +88 -0
- data/examples/v201603/account_management/get_account_changes.rb +135 -0
- data/examples/v201603/account_management/get_account_hierarchy.rb +132 -0
- data/examples/v201603/advanced_operations/add_ad_customizers.rb +184 -0
- data/examples/v201603/advanced_operations/add_ad_group_bid_modifier.rb +101 -0
- data/examples/v201603/advanced_operations/add_click_to_download_ad.rb +133 -0
- data/examples/v201603/advanced_operations/add_html5_ad.rb +137 -0
- data/examples/v201603/advanced_operations/add_keywords_using_incremental_batch_job.rb +210 -0
- data/examples/v201603/advanced_operations/add_text_ad_with_upgraded_urls.rb +134 -0
- data/examples/v201603/advanced_operations/create_and_attach_shared_keyword_set.rb +141 -0
- data/examples/v201603/advanced_operations/find_and_remove_criteria_from_shared_set.rb +174 -0
- data/examples/v201603/advanced_operations/get_ad_group_bid_modifiers.rb +102 -0
- data/examples/v201603/advanced_operations/use_portfolio_bidding_strategy.rb +146 -0
- data/examples/v201603/basic_operations/add_ad_groups.rb +142 -0
- data/examples/v201603/basic_operations/add_campaigns.rb +138 -0
- data/examples/v201603/basic_operations/add_keywords.rb +114 -0
- data/examples/v201603/basic_operations/add_text_ads.rb +109 -0
- data/examples/v201603/basic_operations/get_ad_groups.rb +102 -0
- data/examples/v201603/basic_operations/get_campaigns.rb +97 -0
- data/examples/v201603/basic_operations/get_campaigns_with_awql.rb +89 -0
- data/examples/v201603/basic_operations/get_keywords.rb +109 -0
- data/examples/v201603/basic_operations/get_text_ads.rb +110 -0
- data/examples/v201603/basic_operations/pause_ad.rb +88 -0
- data/examples/v201603/basic_operations/remove_ad.rb +89 -0
- data/examples/v201603/basic_operations/remove_ad_group.rb +85 -0
- data/examples/v201603/basic_operations/remove_campaign.rb +87 -0
- data/examples/v201603/basic_operations/remove_keyword.rb +94 -0
- data/examples/v201603/basic_operations/update_ad_group.rb +85 -0
- data/examples/v201603/basic_operations/update_campaign.rb +86 -0
- data/examples/v201603/basic_operations/update_keyword.rb +106 -0
- data/examples/v201603/campaign_management/add_campaign_labels.rb +82 -0
- data/examples/v201603/campaign_management/add_complete_campaigns_using_batch_job.rb +355 -0
- data/examples/v201603/campaign_management/add_draft.rb +114 -0
- data/examples/v201603/campaign_management/add_experiment.rb +162 -0
- data/examples/v201603/campaign_management/add_trial.rb +142 -0
- data/examples/v201603/campaign_management/get_all_disapproved_ads.rb +97 -0
- data/examples/v201603/campaign_management/get_all_disapproved_ads_with_awql.rb +89 -0
- data/examples/v201603/campaign_management/get_campaigns_by_label.rb +108 -0
- data/examples/v201603/campaign_management/graduate_trial.rb +106 -0
- data/examples/v201603/campaign_management/promote_experiment.rb +81 -0
- data/examples/v201603/campaign_management/set_ad_parameters.rb +118 -0
- data/examples/v201603/campaign_management/set_criterion_bid_modifier.rb +104 -0
- data/examples/v201603/campaign_management/validate_text_ad.rb +110 -0
- data/examples/v201603/error_handling/handle_partial_failures.rb +130 -0
- data/examples/v201603/error_handling/handle_policy_violation_error.rb +141 -0
- data/examples/v201603/extensions/add_google_my_business_location_extensions.rb +193 -0
- data/examples/v201603/extensions/add_site_links.rb +184 -0
- data/examples/v201603/extensions/add_site_links_using_feeds.rb +281 -0
- data/examples/v201603/migration/migrate_to_extension_settings.rb +386 -0
- data/examples/v201603/migration/upgrade_ad_url.rb +93 -0
- data/examples/v201603/misc/get_all_images_and_videos.rb +104 -0
- data/examples/v201603/misc/setup_oauth2.rb +84 -0
- data/examples/v201603/misc/upload_image.rb +93 -0
- data/examples/v201603/misc/upload_media_bundle.rb +90 -0
- data/examples/v201603/misc/use_oauth2_jwt.rb +93 -0
- data/examples/v201603/misc/use_runtime_config.rb +92 -0
- data/examples/v201603/optimization/estimate_keyword_traffic.rb +146 -0
- data/examples/v201603/optimization/get_campaign_criterion_bid_modifier_simulations.rb +128 -0
- data/examples/v201603/optimization/get_keyword_bid_simulations.rb +95 -0
- data/examples/v201603/optimization/get_keyword_ideas.rb +136 -0
- data/examples/v201603/remarketing/add_audience.rb +118 -0
- data/examples/v201603/remarketing/add_conversion_tracker.rb +97 -0
- data/examples/v201603/remarketing/add_crm_based_user_list.rb +116 -0
- data/examples/v201603/remarketing/add_rule_based_user_lists.rb +167 -0
- data/examples/v201603/remarketing/upload_offline_conversions.rb +98 -0
- data/examples/v201603/reporting/download_criteria_report.rb +92 -0
- data/examples/v201603/reporting/download_criteria_report_with_awql.rb +93 -0
- data/examples/v201603/reporting/get_report_fields.rb +75 -0
- data/examples/v201603/reporting/parallel_report_download.rb +164 -0
- data/examples/v201603/reporting/stream_criteria_report_results.rb +97 -0
- data/examples/v201603/shopping_campaigns/add_product_partition_tree.rb +267 -0
- data/examples/v201603/shopping_campaigns/add_product_scope.rb +129 -0
- data/examples/v201603/shopping_campaigns/add_shopping_campaign.rb +129 -0
- data/examples/v201603/shopping_campaigns/get_product_category_taxonomy.rb +115 -0
- data/examples/v201603/targeting/add_campaign_targeting_criteria.rb +180 -0
- data/examples/v201603/targeting/add_demographic_targeting_criteria.rb +112 -0
- data/examples/v201603/targeting/get_campaign_targeting_criteria.rb +106 -0
- data/examples/v201603/targeting/get_targetable_languages_and_carriers.rb +89 -0
- data/examples/v201603/targeting/lookup_location.rb +108 -0
- data/lib/adwords_api.rb +4 -0
- data/lib/adwords_api/api_config.rb +96 -4
- data/lib/adwords_api/batch_job_utils.rb +2 -0
- data/lib/adwords_api/credential_handler.rb +0 -0
- data/lib/adwords_api/errors.rb +0 -0
- data/lib/adwords_api/incremental_upload_helper.rb +0 -0
- data/lib/adwords_api/report_header_handler.rb +0 -0
- data/lib/adwords_api/report_stream.rb +0 -0
- data/lib/adwords_api/report_utils.rb +2 -1
- data/lib/adwords_api/utils.rb +0 -0
- data/lib/adwords_api/utils_reporter.rb +46 -0
- data/lib/adwords_api/v201506/account_label_service.rb +0 -0
- data/lib/adwords_api/v201506/account_label_service_registry.rb +0 -0
- data/lib/adwords_api/v201506/ad_customizer_feed_service.rb +0 -0
- data/lib/adwords_api/v201506/ad_customizer_feed_service_registry.rb +0 -0
- data/lib/adwords_api/v201506/ad_group_ad_service.rb +0 -0
- data/lib/adwords_api/v201506/ad_group_ad_service_registry.rb +0 -0
- data/lib/adwords_api/v201506/ad_group_bid_modifier_service.rb +0 -0
- data/lib/adwords_api/v201506/ad_group_bid_modifier_service_registry.rb +0 -0
- data/lib/adwords_api/v201506/ad_group_criterion_service.rb +0 -0
- data/lib/adwords_api/v201506/ad_group_criterion_service_registry.rb +0 -0
- data/lib/adwords_api/v201506/ad_group_extension_setting_service.rb +0 -0
- data/lib/adwords_api/v201506/ad_group_extension_setting_service_registry.rb +0 -0
- data/lib/adwords_api/v201506/ad_group_feed_service.rb +0 -0
- data/lib/adwords_api/v201506/ad_group_feed_service_registry.rb +0 -0
- data/lib/adwords_api/v201506/ad_group_service.rb +0 -0
- data/lib/adwords_api/v201506/ad_group_service_registry.rb +0 -0
- data/lib/adwords_api/v201506/ad_param_service.rb +0 -0
- data/lib/adwords_api/v201506/ad_param_service_registry.rb +0 -0
- data/lib/adwords_api/v201506/adwords_user_list_service.rb +0 -0
- data/lib/adwords_api/v201506/adwords_user_list_service_registry.rb +0 -0
- data/lib/adwords_api/v201506/bidding_strategy_service.rb +0 -0
- data/lib/adwords_api/v201506/bidding_strategy_service_registry.rb +0 -0
- data/lib/adwords_api/v201506/budget_order_service.rb +0 -0
- data/lib/adwords_api/v201506/budget_order_service_registry.rb +0 -0
- data/lib/adwords_api/v201506/budget_service.rb +0 -0
- data/lib/adwords_api/v201506/budget_service_registry.rb +0 -0
- data/lib/adwords_api/v201506/campaign_criterion_service.rb +0 -0
- data/lib/adwords_api/v201506/campaign_criterion_service_registry.rb +0 -0
- data/lib/adwords_api/v201506/campaign_extension_setting_service.rb +0 -0
- data/lib/adwords_api/v201506/campaign_extension_setting_service_registry.rb +0 -0
- data/lib/adwords_api/v201506/campaign_feed_service.rb +0 -0
- data/lib/adwords_api/v201506/campaign_feed_service_registry.rb +0 -0
- data/lib/adwords_api/v201506/campaign_service.rb +0 -0
- data/lib/adwords_api/v201506/campaign_service_registry.rb +0 -0
- data/lib/adwords_api/v201506/campaign_shared_set_service.rb +0 -0
- data/lib/adwords_api/v201506/campaign_shared_set_service_registry.rb +0 -0
- data/lib/adwords_api/v201506/constant_data_service.rb +0 -0
- data/lib/adwords_api/v201506/constant_data_service_registry.rb +0 -0
- data/lib/adwords_api/v201506/conversion_tracker_service.rb +0 -0
- data/lib/adwords_api/v201506/conversion_tracker_service_registry.rb +0 -0
- data/lib/adwords_api/v201506/customer_extension_setting_service.rb +0 -0
- data/lib/adwords_api/v201506/customer_extension_setting_service_registry.rb +0 -0
- data/lib/adwords_api/v201506/customer_feed_service.rb +0 -0
- data/lib/adwords_api/v201506/customer_feed_service_registry.rb +0 -0
- data/lib/adwords_api/v201506/customer_service.rb +0 -0
- data/lib/adwords_api/v201506/customer_service_registry.rb +0 -0
- data/lib/adwords_api/v201506/customer_sync_service.rb +0 -0
- data/lib/adwords_api/v201506/customer_sync_service_registry.rb +0 -0
- data/lib/adwords_api/v201506/data_service.rb +0 -0
- data/lib/adwords_api/v201506/data_service_registry.rb +0 -0
- data/lib/adwords_api/v201506/experiment_service.rb +0 -0
- data/lib/adwords_api/v201506/experiment_service_registry.rb +0 -0
- data/lib/adwords_api/v201506/feed_item_service.rb +0 -0
- data/lib/adwords_api/v201506/feed_item_service_registry.rb +0 -0
- data/lib/adwords_api/v201506/feed_mapping_service.rb +0 -0
- data/lib/adwords_api/v201506/feed_mapping_service_registry.rb +0 -0
- data/lib/adwords_api/v201506/feed_service.rb +0 -0
- data/lib/adwords_api/v201506/feed_service_registry.rb +0 -0
- data/lib/adwords_api/v201506/geo_location_service.rb +0 -0
- data/lib/adwords_api/v201506/geo_location_service_registry.rb +0 -0
- data/lib/adwords_api/v201506/label_service.rb +0 -0
- data/lib/adwords_api/v201506/label_service_registry.rb +0 -0
- data/lib/adwords_api/v201506/location_criterion_service.rb +0 -0
- data/lib/adwords_api/v201506/location_criterion_service_registry.rb +0 -0
- data/lib/adwords_api/v201506/managed_customer_service.rb +0 -0
- data/lib/adwords_api/v201506/managed_customer_service_registry.rb +0 -0
- data/lib/adwords_api/v201506/media_service.rb +0 -0
- data/lib/adwords_api/v201506/media_service_registry.rb +0 -0
- data/lib/adwords_api/v201506/mutate_job_service.rb +0 -0
- data/lib/adwords_api/v201506/mutate_job_service_registry.rb +0 -0
- data/lib/adwords_api/v201506/offline_conversion_feed_service.rb +0 -0
- data/lib/adwords_api/v201506/offline_conversion_feed_service_registry.rb +0 -0
- data/lib/adwords_api/v201506/report_definition_service.rb +0 -0
- data/lib/adwords_api/v201506/report_definition_service_registry.rb +0 -0
- data/lib/adwords_api/v201506/shared_criterion_service.rb +0 -0
- data/lib/adwords_api/v201506/shared_criterion_service_registry.rb +0 -0
- data/lib/adwords_api/v201506/shared_set_service.rb +0 -0
- data/lib/adwords_api/v201506/shared_set_service_registry.rb +0 -0
- data/lib/adwords_api/v201506/targeting_idea_service.rb +0 -0
- data/lib/adwords_api/v201506/targeting_idea_service_registry.rb +0 -0
- data/lib/adwords_api/v201506/traffic_estimator_service.rb +0 -0
- data/lib/adwords_api/v201506/traffic_estimator_service_registry.rb +0 -0
- data/lib/adwords_api/v201509/account_label_service.rb +0 -0
- data/lib/adwords_api/v201509/account_label_service_registry.rb +0 -0
- data/lib/adwords_api/v201509/ad_customizer_feed_service.rb +0 -0
- data/lib/adwords_api/v201509/ad_customizer_feed_service_registry.rb +0 -0
- data/lib/adwords_api/v201509/ad_group_ad_service.rb +0 -0
- data/lib/adwords_api/v201509/ad_group_ad_service_registry.rb +0 -0
- data/lib/adwords_api/v201509/ad_group_bid_modifier_service.rb +0 -0
- data/lib/adwords_api/v201509/ad_group_bid_modifier_service_registry.rb +0 -0
- data/lib/adwords_api/v201509/ad_group_criterion_service.rb +0 -0
- data/lib/adwords_api/v201509/ad_group_criterion_service_registry.rb +0 -0
- data/lib/adwords_api/v201509/ad_group_extension_setting_service.rb +0 -0
- data/lib/adwords_api/v201509/ad_group_extension_setting_service_registry.rb +0 -0
- data/lib/adwords_api/v201509/ad_group_feed_service.rb +0 -0
- data/lib/adwords_api/v201509/ad_group_feed_service_registry.rb +0 -0
- data/lib/adwords_api/v201509/ad_group_service.rb +0 -0
- data/lib/adwords_api/v201509/ad_group_service_registry.rb +0 -0
- data/lib/adwords_api/v201509/ad_param_service.rb +0 -0
- data/lib/adwords_api/v201509/ad_param_service_registry.rb +0 -0
- data/lib/adwords_api/v201509/adwords_user_list_service.rb +0 -0
- data/lib/adwords_api/v201509/adwords_user_list_service_registry.rb +0 -0
- data/lib/adwords_api/v201509/batch_job_service.rb +0 -0
- data/lib/adwords_api/v201509/batch_job_service_registry.rb +0 -0
- data/lib/adwords_api/v201509/bidding_strategy_service.rb +0 -0
- data/lib/adwords_api/v201509/bidding_strategy_service_registry.rb +0 -0
- data/lib/adwords_api/v201509/budget_order_service.rb +0 -0
- data/lib/adwords_api/v201509/budget_order_service_registry.rb +0 -0
- data/lib/adwords_api/v201509/budget_service.rb +0 -0
- data/lib/adwords_api/v201509/budget_service_registry.rb +0 -0
- data/lib/adwords_api/v201509/campaign_criterion_service.rb +0 -0
- data/lib/adwords_api/v201509/campaign_criterion_service_registry.rb +0 -0
- data/lib/adwords_api/v201509/campaign_extension_setting_service.rb +0 -0
- data/lib/adwords_api/v201509/campaign_extension_setting_service_registry.rb +0 -0
- data/lib/adwords_api/v201509/campaign_feed_service.rb +0 -0
- data/lib/adwords_api/v201509/campaign_feed_service_registry.rb +0 -0
- data/lib/adwords_api/v201509/campaign_service.rb +0 -0
- data/lib/adwords_api/v201509/campaign_service_registry.rb +0 -0
- data/lib/adwords_api/v201509/campaign_shared_set_service.rb +0 -0
- data/lib/adwords_api/v201509/campaign_shared_set_service_registry.rb +0 -0
- data/lib/adwords_api/v201509/constant_data_service.rb +0 -0
- data/lib/adwords_api/v201509/constant_data_service_registry.rb +0 -0
- data/lib/adwords_api/v201509/conversion_tracker_service.rb +0 -0
- data/lib/adwords_api/v201509/conversion_tracker_service_registry.rb +0 -0
- data/lib/adwords_api/v201509/customer_extension_setting_service.rb +0 -0
- data/lib/adwords_api/v201509/customer_extension_setting_service_registry.rb +0 -0
- data/lib/adwords_api/v201509/customer_feed_service.rb +0 -0
- data/lib/adwords_api/v201509/customer_feed_service_registry.rb +0 -0
- data/lib/adwords_api/v201509/customer_service.rb +0 -0
- data/lib/adwords_api/v201509/customer_service_registry.rb +0 -0
- data/lib/adwords_api/v201509/customer_sync_service.rb +0 -0
- data/lib/adwords_api/v201509/customer_sync_service_registry.rb +0 -0
- data/lib/adwords_api/v201509/data_service.rb +0 -0
- data/lib/adwords_api/v201509/data_service_registry.rb +0 -0
- data/lib/adwords_api/v201509/experiment_service.rb +0 -0
- data/lib/adwords_api/v201509/experiment_service_registry.rb +0 -0
- data/lib/adwords_api/v201509/feed_item_service.rb +0 -0
- data/lib/adwords_api/v201509/feed_item_service_registry.rb +0 -0
- data/lib/adwords_api/v201509/feed_mapping_service.rb +0 -0
- data/lib/adwords_api/v201509/feed_mapping_service_registry.rb +0 -0
- data/lib/adwords_api/v201509/feed_service.rb +0 -0
- data/lib/adwords_api/v201509/feed_service_registry.rb +0 -0
- data/lib/adwords_api/v201509/label_service.rb +0 -0
- data/lib/adwords_api/v201509/label_service_registry.rb +0 -0
- data/lib/adwords_api/v201509/location_criterion_service.rb +0 -0
- data/lib/adwords_api/v201509/location_criterion_service_registry.rb +0 -0
- data/lib/adwords_api/v201509/managed_customer_service.rb +0 -0
- data/lib/adwords_api/v201509/managed_customer_service_registry.rb +0 -0
- data/lib/adwords_api/v201509/media_service.rb +0 -0
- data/lib/adwords_api/v201509/media_service_registry.rb +0 -0
- data/lib/adwords_api/v201509/mutate_job_service.rb +0 -0
- data/lib/adwords_api/v201509/mutate_job_service_registry.rb +0 -0
- data/lib/adwords_api/v201509/offline_conversion_feed_service.rb +0 -0
- data/lib/adwords_api/v201509/offline_conversion_feed_service_registry.rb +0 -0
- data/lib/adwords_api/v201509/report_definition_service.rb +0 -0
- data/lib/adwords_api/v201509/report_definition_service_registry.rb +0 -0
- data/lib/adwords_api/v201509/shared_criterion_service.rb +0 -0
- data/lib/adwords_api/v201509/shared_criterion_service_registry.rb +0 -0
- data/lib/adwords_api/v201509/shared_set_service.rb +0 -0
- data/lib/adwords_api/v201509/shared_set_service_registry.rb +0 -0
- data/lib/adwords_api/v201509/targeting_idea_service.rb +0 -0
- data/lib/adwords_api/v201509/targeting_idea_service_registry.rb +0 -0
- data/lib/adwords_api/v201509/traffic_estimator_service.rb +0 -0
- data/lib/adwords_api/v201509/traffic_estimator_service_registry.rb +0 -0
- data/lib/adwords_api/v201601/account_label_service.rb +0 -0
- data/lib/adwords_api/v201601/account_label_service_registry.rb +0 -0
- data/lib/adwords_api/v201601/ad_customizer_feed_service.rb +0 -0
- data/lib/adwords_api/v201601/ad_customizer_feed_service_registry.rb +0 -0
- data/lib/adwords_api/v201601/ad_group_ad_service.rb +0 -0
- data/lib/adwords_api/v201601/ad_group_ad_service_registry.rb +0 -0
- data/lib/adwords_api/v201601/ad_group_bid_modifier_service.rb +0 -0
- data/lib/adwords_api/v201601/ad_group_bid_modifier_service_registry.rb +0 -0
- data/lib/adwords_api/v201601/ad_group_criterion_service.rb +0 -0
- data/lib/adwords_api/v201601/ad_group_criterion_service_registry.rb +0 -0
- data/lib/adwords_api/v201601/ad_group_extension_setting_service.rb +0 -0
- data/lib/adwords_api/v201601/ad_group_extension_setting_service_registry.rb +0 -0
- data/lib/adwords_api/v201601/ad_group_feed_service.rb +0 -0
- data/lib/adwords_api/v201601/ad_group_feed_service_registry.rb +0 -0
- data/lib/adwords_api/v201601/ad_group_service.rb +0 -0
- data/lib/adwords_api/v201601/ad_group_service_registry.rb +0 -0
- data/lib/adwords_api/v201601/ad_param_service.rb +0 -0
- data/lib/adwords_api/v201601/ad_param_service_registry.rb +0 -0
- data/lib/adwords_api/v201601/adwords_user_list_service.rb +0 -0
- data/lib/adwords_api/v201601/adwords_user_list_service_registry.rb +0 -0
- data/lib/adwords_api/v201601/batch_job_service.rb +0 -0
- data/lib/adwords_api/v201601/batch_job_service_registry.rb +0 -0
- data/lib/adwords_api/v201601/bidding_strategy_service.rb +0 -0
- data/lib/adwords_api/v201601/bidding_strategy_service_registry.rb +0 -0
- data/lib/adwords_api/v201601/budget_order_service.rb +0 -0
- data/lib/adwords_api/v201601/budget_order_service_registry.rb +0 -0
- data/lib/adwords_api/v201601/budget_service.rb +0 -0
- data/lib/adwords_api/v201601/budget_service_registry.rb +0 -0
- data/lib/adwords_api/v201601/campaign_criterion_service.rb +0 -0
- data/lib/adwords_api/v201601/campaign_criterion_service_registry.rb +0 -0
- data/lib/adwords_api/v201601/campaign_extension_setting_service.rb +0 -0
- data/lib/adwords_api/v201601/campaign_extension_setting_service_registry.rb +0 -0
- data/lib/adwords_api/v201601/campaign_feed_service.rb +0 -0
- data/lib/adwords_api/v201601/campaign_feed_service_registry.rb +0 -0
- data/lib/adwords_api/v201601/campaign_service.rb +0 -0
- data/lib/adwords_api/v201601/campaign_service_registry.rb +0 -0
- data/lib/adwords_api/v201601/campaign_shared_set_service.rb +0 -0
- data/lib/adwords_api/v201601/campaign_shared_set_service_registry.rb +0 -0
- data/lib/adwords_api/v201601/constant_data_service.rb +0 -0
- data/lib/adwords_api/v201601/constant_data_service_registry.rb +0 -0
- data/lib/adwords_api/v201601/conversion_tracker_service.rb +0 -0
- data/lib/adwords_api/v201601/conversion_tracker_service_registry.rb +0 -0
- data/lib/adwords_api/v201601/customer_extension_setting_service.rb +0 -0
- data/lib/adwords_api/v201601/customer_extension_setting_service_registry.rb +0 -0
- data/lib/adwords_api/v201601/customer_feed_service.rb +0 -0
- data/lib/adwords_api/v201601/customer_feed_service_registry.rb +0 -0
- data/lib/adwords_api/v201601/customer_service.rb +0 -0
- data/lib/adwords_api/v201601/customer_service_registry.rb +0 -0
- data/lib/adwords_api/v201601/customer_sync_service.rb +0 -0
- data/lib/adwords_api/v201601/customer_sync_service_registry.rb +0 -0
- data/lib/adwords_api/v201601/data_service.rb +0 -0
- data/lib/adwords_api/v201601/data_service_registry.rb +0 -0
- data/lib/adwords_api/v201601/experiment_service.rb +0 -0
- data/lib/adwords_api/v201601/experiment_service_registry.rb +0 -0
- data/lib/adwords_api/v201601/feed_item_service.rb +0 -0
- data/lib/adwords_api/v201601/feed_item_service_registry.rb +0 -0
- data/lib/adwords_api/v201601/feed_mapping_service.rb +0 -0
- data/lib/adwords_api/v201601/feed_mapping_service_registry.rb +0 -0
- data/lib/adwords_api/v201601/feed_service.rb +0 -0
- data/lib/adwords_api/v201601/feed_service_registry.rb +0 -0
- data/lib/adwords_api/v201601/label_service.rb +0 -0
- data/lib/adwords_api/v201601/label_service_registry.rb +0 -0
- data/lib/adwords_api/v201601/location_criterion_service.rb +0 -0
- data/lib/adwords_api/v201601/location_criterion_service_registry.rb +0 -0
- data/lib/adwords_api/v201601/managed_customer_service.rb +0 -0
- data/lib/adwords_api/v201601/managed_customer_service_registry.rb +0 -0
- data/lib/adwords_api/v201601/media_service.rb +0 -0
- data/lib/adwords_api/v201601/media_service_registry.rb +0 -0
- data/lib/adwords_api/v201601/mutate_job_service.rb +0 -0
- data/lib/adwords_api/v201601/mutate_job_service_registry.rb +0 -0
- data/lib/adwords_api/v201601/offline_conversion_feed_service.rb +0 -0
- data/lib/adwords_api/v201601/offline_conversion_feed_service_registry.rb +0 -0
- data/lib/adwords_api/v201601/report_definition_service.rb +0 -0
- data/lib/adwords_api/v201601/report_definition_service_registry.rb +0 -0
- data/lib/adwords_api/v201601/shared_criterion_service.rb +0 -0
- data/lib/adwords_api/v201601/shared_criterion_service_registry.rb +0 -0
- data/lib/adwords_api/v201601/shared_set_service.rb +0 -0
- data/lib/adwords_api/v201601/shared_set_service_registry.rb +0 -0
- data/lib/adwords_api/v201601/targeting_idea_service.rb +0 -0
- data/lib/adwords_api/v201601/targeting_idea_service_registry.rb +0 -0
- data/lib/adwords_api/v201601/traffic_estimator_service.rb +0 -0
- data/lib/adwords_api/v201601/traffic_estimator_service_registry.rb +0 -0
- data/lib/adwords_api/v201603/account_label_service.rb +46 -0
- data/lib/adwords_api/v201603/account_label_service_registry.rb +46 -0
- data/lib/adwords_api/v201603/ad_customizer_feed_service.rb +46 -0
- data/lib/adwords_api/v201603/ad_customizer_feed_service_registry.rb +46 -0
- data/lib/adwords_api/v201603/ad_group_ad_service.rb +70 -0
- data/lib/adwords_api/v201603/ad_group_ad_service_registry.rb +46 -0
- data/lib/adwords_api/v201603/ad_group_bid_modifier_service.rb +54 -0
- data/lib/adwords_api/v201603/ad_group_bid_modifier_service_registry.rb +46 -0
- data/lib/adwords_api/v201603/ad_group_criterion_service.rb +62 -0
- data/lib/adwords_api/v201603/ad_group_criterion_service_registry.rb +46 -0
- data/lib/adwords_api/v201603/ad_group_extension_setting_service.rb +54 -0
- data/lib/adwords_api/v201603/ad_group_extension_setting_service_registry.rb +46 -0
- data/lib/adwords_api/v201603/ad_group_feed_service.rb +54 -0
- data/lib/adwords_api/v201603/ad_group_feed_service_registry.rb +46 -0
- data/lib/adwords_api/v201603/ad_group_service.rb +62 -0
- data/lib/adwords_api/v201603/ad_group_service_registry.rb +46 -0
- data/lib/adwords_api/v201603/ad_param_service.rb +46 -0
- data/lib/adwords_api/v201603/ad_param_service_registry.rb +46 -0
- data/lib/adwords_api/v201603/adwords_user_list_service.rb +62 -0
- data/lib/adwords_api/v201603/adwords_user_list_service_registry.rb +46 -0
- data/lib/adwords_api/v201603/batch_job_service.rb +54 -0
- data/lib/adwords_api/v201603/batch_job_service_registry.rb +46 -0
- data/lib/adwords_api/v201603/bidding_strategy_service.rb +54 -0
- data/lib/adwords_api/v201603/bidding_strategy_service_registry.rb +46 -0
- data/lib/adwords_api/v201603/budget_order_service.rb +54 -0
- data/lib/adwords_api/v201603/budget_order_service_registry.rb +46 -0
- data/lib/adwords_api/v201603/budget_service.rb +54 -0
- data/lib/adwords_api/v201603/budget_service_registry.rb +46 -0
- data/lib/adwords_api/v201603/campaign_criterion_service.rb +54 -0
- data/lib/adwords_api/v201603/campaign_criterion_service_registry.rb +46 -0
- data/lib/adwords_api/v201603/campaign_extension_setting_service.rb +54 -0
- data/lib/adwords_api/v201603/campaign_extension_setting_service_registry.rb +46 -0
- data/lib/adwords_api/v201603/campaign_feed_service.rb +54 -0
- data/lib/adwords_api/v201603/campaign_feed_service_registry.rb +46 -0
- data/lib/adwords_api/v201603/campaign_service.rb +62 -0
- data/lib/adwords_api/v201603/campaign_service_registry.rb +46 -0
- data/lib/adwords_api/v201603/campaign_shared_set_service.rb +54 -0
- data/lib/adwords_api/v201603/campaign_shared_set_service_registry.rb +46 -0
- data/lib/adwords_api/v201603/constant_data_service.rb +110 -0
- data/lib/adwords_api/v201603/constant_data_service_registry.rb +46 -0
- data/lib/adwords_api/v201603/conversion_tracker_service.rb +54 -0
- data/lib/adwords_api/v201603/conversion_tracker_service_registry.rb +46 -0
- data/lib/adwords_api/v201603/customer_extension_setting_service.rb +54 -0
- data/lib/adwords_api/v201603/customer_extension_setting_service_registry.rb +46 -0
- data/lib/adwords_api/v201603/customer_feed_service.rb +54 -0
- data/lib/adwords_api/v201603/customer_feed_service_registry.rb +46 -0
- data/lib/adwords_api/v201603/customer_service.rb +54 -0
- data/lib/adwords_api/v201603/customer_service_registry.rb +46 -0
- data/lib/adwords_api/v201603/customer_sync_service.rb +38 -0
- data/lib/adwords_api/v201603/customer_sync_service_registry.rb +47 -0
- data/lib/adwords_api/v201603/data_service.rb +94 -0
- data/lib/adwords_api/v201603/data_service_registry.rb +46 -0
- data/lib/adwords_api/v201603/draft_async_error_service.rb +46 -0
- data/lib/adwords_api/v201603/draft_async_error_service_registry.rb +46 -0
- data/lib/adwords_api/v201603/draft_service.rb +54 -0
- data/lib/adwords_api/v201603/draft_service_registry.rb +46 -0
- data/lib/adwords_api/v201603/experiment_service.rb +46 -0
- data/lib/adwords_api/v201603/experiment_service_registry.rb +46 -0
- data/lib/adwords_api/v201603/feed_item_service.rb +54 -0
- data/lib/adwords_api/v201603/feed_item_service_registry.rb +46 -0
- data/lib/adwords_api/v201603/feed_mapping_service.rb +54 -0
- data/lib/adwords_api/v201603/feed_mapping_service_registry.rb +46 -0
- data/lib/adwords_api/v201603/feed_service.rb +54 -0
- data/lib/adwords_api/v201603/feed_service_registry.rb +46 -0
- data/lib/adwords_api/v201603/label_service.rb +54 -0
- data/lib/adwords_api/v201603/label_service_registry.rb +46 -0
- data/lib/adwords_api/v201603/location_criterion_service.rb +46 -0
- data/lib/adwords_api/v201603/location_criterion_service_registry.rb +46 -0
- data/lib/adwords_api/v201603/managed_customer_service.rb +78 -0
- data/lib/adwords_api/v201603/managed_customer_service_registry.rb +46 -0
- data/lib/adwords_api/v201603/media_service.rb +54 -0
- data/lib/adwords_api/v201603/media_service_registry.rb +46 -0
- data/lib/adwords_api/v201603/offline_conversion_feed_service.rb +38 -0
- data/lib/adwords_api/v201603/offline_conversion_feed_service_registry.rb +46 -0
- data/lib/adwords_api/v201603/report_definition_service.rb +38 -0
- data/lib/adwords_api/v201603/report_definition_service_registry.rb +46 -0
- data/lib/adwords_api/v201603/shared_criterion_service.rb +54 -0
- data/lib/adwords_api/v201603/shared_criterion_service_registry.rb +46 -0
- data/lib/adwords_api/v201603/shared_set_service.rb +54 -0
- data/lib/adwords_api/v201603/shared_set_service_registry.rb +46 -0
- data/lib/adwords_api/v201603/targeting_idea_service.rb +38 -0
- data/lib/adwords_api/v201603/targeting_idea_service_registry.rb +46 -0
- data/lib/adwords_api/v201603/traffic_estimator_service.rb +38 -0
- data/lib/adwords_api/v201603/traffic_estimator_service_registry.rb +46 -0
- data/lib/adwords_api/v201603/trial_async_error_service.rb +46 -0
- data/lib/adwords_api/v201603/trial_async_error_service_registry.rb +46 -0
- data/lib/adwords_api/v201603/trial_service.rb +54 -0
- data/lib/adwords_api/v201603/trial_service_registry.rb +46 -0
- data/lib/adwords_api/version.rb +1 -1
- data/test/adwords_api/test_batch_job_utils.rb +5 -3
- data/test/adwords_api/test_report_utils.rb +2 -4
- data/test/suite_unittests.rb +4 -0
- data/test/templates/v201506/basic_operations_get_campaigns.def +0 -0
- data/test/templates/v201506/misc_use_oauth2_service_account.def +0 -0
- data/test/templates/v201509/basic_operations_get_campaigns.def +0 -0
- data/test/templates/v201509/misc_use_oauth2_service_account.def +0 -0
- metadata +172 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7770c867249d1ad815e6793b03b574f7f3319a93
|
|
4
|
+
data.tar.gz: 79f859742263d8b9cdbe931057eaadaff638bde3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 54d069af788276c67b229c3d08fb99468ca2f8f9b5be543b6925e1ebba74f47d4ddd526f4de3ffe4564530ff2c5e64aba35d2b3b4380522d6d21aafa45257002
|
|
7
|
+
data.tar.gz: 6263e6fa041ee1d61d535d52ebabddb3c03683854d4301a28648a992334f245daeecd2df27a79509b428a94a109fac82ed30e9a022a2b8ca41b240fb470670fb
|
data/COPYING
CHANGED
|
File without changes
|
data/ChangeLog
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
0.18.3:
|
|
2
|
+
- Support and examples for v201603.
|
|
3
|
+
|
|
4
|
+
0.18.2:
|
|
5
|
+
- Require google-ads-common 0.11.3 or later from now on.
|
|
6
|
+
- Added support for custom user agent strings to include utility usage.
|
|
7
|
+
|
|
1
8
|
0.18.1:
|
|
2
9
|
- Support and examples for v201601.
|
|
3
10
|
- Updated batch_job_utils to handle API changes in v201601.
|
data/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
# Google AdWords
|
|
1
|
+
# Google AdWords Client Library
|
|
2
2
|
|
|
3
3
|
Welcome to the next generation Google-developed Ruby client library for the
|
|
4
|
-
AdWords
|
|
4
|
+
AdWords API!
|
|
5
5
|
|
|
6
6
|
It contains full support for all API services with full stubs, and a simplified
|
|
7
7
|
programming interface that lets you handle everything in native Ruby
|
|
@@ -12,17 +12,12 @@ collections.
|
|
|
12
12
|
|
|
13
13
|
## 1 - Installation
|
|
14
14
|
|
|
15
|
-
`google-adwords-api`
|
|
16
|
-
[http://
|
|
15
|
+
`google-adwords-api` is a ruby gem. See
|
|
16
|
+
[http://guides.rubygems.org/rubygems-basics/]().
|
|
17
17
|
|
|
18
|
-
Install
|
|
18
|
+
Install it using the gem install command:
|
|
19
19
|
|
|
20
20
|
$ gem install --remote google-adwords-api
|
|
21
|
-
$ gem install --remote google-adx-buyer-api
|
|
22
|
-
|
|
23
|
-
Please note the `google-adx-buyer-api` gem contains only DoubleClick Ad
|
|
24
|
-
Exchange Buyer client library examples. The gem also depends on the
|
|
25
|
-
AdWords library, which will be installed automatically.
|
|
26
21
|
|
|
27
22
|
The following gem libraries are required:
|
|
28
23
|
|
|
@@ -92,21 +87,6 @@ For example:
|
|
|
92
87
|
:proxy => 'http://user:password@proxy_hostname:8080'
|
|
93
88
|
}
|
|
94
89
|
|
|
95
|
-
*Note*: If you are using Ruby 1.8 you may need to include RubyGems to be able
|
|
96
|
-
to require other gems code. There are several ways to do it, the easiest one is
|
|
97
|
-
to pass '-rubygems' parameter to the ruby interpreter:
|
|
98
|
-
|
|
99
|
-
$ ruby -rubygems my_program_that_uses_gems
|
|
100
|
-
|
|
101
|
-
you can also set this up in the environment:
|
|
102
|
-
|
|
103
|
-
$ export RUBYOPT="rubygems"
|
|
104
|
-
|
|
105
|
-
or add it to the bash configuration file:
|
|
106
|
-
|
|
107
|
-
$ echo 'export RUBYOPT="rubygems"' >> ~/.bashrc
|
|
108
|
-
|
|
109
|
-
|
|
110
90
|
### 2.1 - Ruby names for a Ruby library
|
|
111
91
|
|
|
112
92
|
In order to make things more Ruby-like for our Ruby developers, we've renamed
|
|
@@ -211,7 +191,7 @@ To target a specific version:
|
|
|
211
191
|
|
|
212
192
|
For example:
|
|
213
193
|
|
|
214
|
-
$ rake generate[
|
|
194
|
+
$ rake generate[v201601]
|
|
215
195
|
|
|
216
196
|
To target a specific service in a specific version:
|
|
217
197
|
|
|
@@ -219,12 +199,11 @@ To target a specific service in a specific version:
|
|
|
219
199
|
|
|
220
200
|
For example:
|
|
221
201
|
|
|
222
|
-
$ rake generate[
|
|
202
|
+
$ rake generate[v201601,CampaignService]
|
|
223
203
|
|
|
224
204
|
To build the gems:
|
|
225
205
|
|
|
226
206
|
$ gem build google-adwords-api.gemspec
|
|
227
|
-
$ gem build google-adx-buyer-api.gemspec
|
|
228
207
|
|
|
229
208
|
To run unit tests on the library:
|
|
230
209
|
|
|
@@ -247,7 +226,7 @@ announcements and other news.
|
|
|
247
226
|
|
|
248
227
|
## Licence
|
|
249
228
|
|
|
250
|
-
Copyright 2010-
|
|
229
|
+
Copyright 2010-2016, Google Inc. All Rights Reserved.
|
|
251
230
|
|
|
252
231
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
253
232
|
you may not use this file except in compliance with the License.
|
data/adwords_api.yml
CHANGED
|
@@ -70,9 +70,7 @@ def parallel_report_download()
|
|
|
70
70
|
:report_name => 'Custom ADGROUP_PERFORMANCE_REPORT',
|
|
71
71
|
:report_type => 'ADGROUP_PERFORMANCE_REPORT',
|
|
72
72
|
:download_format => 'CSV',
|
|
73
|
-
:date_range_type => 'LAST_7_DAYS'
|
|
74
|
-
# Enable to get rows with zero impressions.
|
|
75
|
-
:include_zero_impressions => false
|
|
73
|
+
:date_range_type => 'LAST_7_DAYS'
|
|
76
74
|
}
|
|
77
75
|
|
|
78
76
|
puts 'Retrieving %d reports with %d threads:' % [queue.size, THREADS]
|
|
@@ -70,9 +70,7 @@ def parallel_report_download()
|
|
|
70
70
|
:report_name => 'Custom ADGROUP_PERFORMANCE_REPORT',
|
|
71
71
|
:report_type => 'ADGROUP_PERFORMANCE_REPORT',
|
|
72
72
|
:download_format => 'CSV',
|
|
73
|
-
:date_range_type => 'LAST_7_DAYS'
|
|
74
|
-
# Enable to get rows with zero impressions.
|
|
75
|
-
:include_zero_impressions => false
|
|
73
|
+
:date_range_type => 'LAST_7_DAYS'
|
|
76
74
|
}
|
|
77
75
|
|
|
78
76
|
puts 'Retrieving %d reports with %d threads:' % [queue.size, THREADS]
|
|
@@ -70,9 +70,7 @@ def parallel_report_download()
|
|
|
70
70
|
:report_name => 'Custom ADGROUP_PERFORMANCE_REPORT',
|
|
71
71
|
:report_type => 'ADGROUP_PERFORMANCE_REPORT',
|
|
72
72
|
:download_format => 'CSV',
|
|
73
|
-
:date_range_type => 'LAST_7_DAYS'
|
|
74
|
-
# Enable to get rows with zero impressions.
|
|
75
|
-
:include_zero_impressions => false
|
|
73
|
+
:date_range_type => 'LAST_7_DAYS'
|
|
76
74
|
}
|
|
77
75
|
|
|
78
76
|
puts 'Retrieving %d reports with %d threads:' % [queue.size, THREADS]
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
#!/usr/bin/env ruby
|
|
2
|
+
# Encoding: utf-8
|
|
3
|
+
#
|
|
4
|
+
# Copyright:: Copyright 2011, Google Inc. All Rights Reserved.
|
|
5
|
+
#
|
|
6
|
+
# License:: Licensed under the Apache License, Version 2.0 (the "License");
|
|
7
|
+
# you may not use this file except in compliance with the License.
|
|
8
|
+
# You may obtain a copy of the License at
|
|
9
|
+
#
|
|
10
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
11
|
+
#
|
|
12
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
13
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
14
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
15
|
+
# implied.
|
|
16
|
+
# See the License for the specific language governing permissions and
|
|
17
|
+
# limitations under the License.
|
|
18
|
+
#
|
|
19
|
+
# This example illustrates how to create an account. Note by default this
|
|
20
|
+
# account will only be accessible via parent AdWords manager account.
|
|
21
|
+
|
|
22
|
+
require 'adwords_api'
|
|
23
|
+
require 'adwords_api/utils'
|
|
24
|
+
|
|
25
|
+
def create_account()
|
|
26
|
+
# AdwordsApi::Api will read a config file from ENV['HOME']/adwords_api.yml
|
|
27
|
+
# when called without parameters.
|
|
28
|
+
adwords = AdwordsApi::Api.new
|
|
29
|
+
|
|
30
|
+
# To enable logging of SOAP requests, set the log_level value to 'DEBUG' in
|
|
31
|
+
# the configuration file or provide your own logger:
|
|
32
|
+
# adwords.logger = Logger.new('adwords_xml.log')
|
|
33
|
+
|
|
34
|
+
managed_customer_srv = adwords.service(:ManagedCustomerService, API_VERSION)
|
|
35
|
+
|
|
36
|
+
# Create a local Customer object.
|
|
37
|
+
customer = {
|
|
38
|
+
:name => 'Account created with ManagedCustomerService',
|
|
39
|
+
:currency_code => 'EUR',
|
|
40
|
+
:date_time_zone => 'Europe/London'
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
# Prepare operation to create an account.
|
|
44
|
+
operation = {
|
|
45
|
+
:operator => 'ADD',
|
|
46
|
+
:operand => customer
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
# Create the account. It is possible to create multiple accounts with one
|
|
50
|
+
# request by sending an array of operations.
|
|
51
|
+
response = managed_customer_srv.mutate([operation])
|
|
52
|
+
|
|
53
|
+
response[:value].each do |new_account|
|
|
54
|
+
puts "Account with customer ID '%s' was successfully created." %
|
|
55
|
+
AdwordsApi::Utils.format_id(new_account[:customer_id])
|
|
56
|
+
end
|
|
57
|
+
end
|
|
58
|
+
|
|
59
|
+
if __FILE__ == $0
|
|
60
|
+
API_VERSION = :v201603
|
|
61
|
+
|
|
62
|
+
begin
|
|
63
|
+
create_account()
|
|
64
|
+
|
|
65
|
+
# Authorization error.
|
|
66
|
+
rescue AdsCommon::Errors::OAuth2VerificationRequired => e
|
|
67
|
+
puts "Authorization credentials are not valid. Edit adwords_api.yml for " +
|
|
68
|
+
"OAuth2 client ID and secret and run misc/setup_oauth2.rb example " +
|
|
69
|
+
"to retrieve and store OAuth2 tokens."
|
|
70
|
+
puts "See this wiki page for more details:\n\n " +
|
|
71
|
+
'https://github.com/googleads/google-api-ads-ruby/wiki/OAuth2'
|
|
72
|
+
|
|
73
|
+
# HTTP errors.
|
|
74
|
+
rescue AdsCommon::Errors::HttpError => e
|
|
75
|
+
puts "HTTP Error: %s" % e
|
|
76
|
+
|
|
77
|
+
# API errors.
|
|
78
|
+
rescue AdwordsApi::Errors::ApiException => e
|
|
79
|
+
puts "Message: %s" % e.message
|
|
80
|
+
puts 'Errors:'
|
|
81
|
+
e.errors.each_with_index do |error, index|
|
|
82
|
+
puts "\tError [%d]:" % (index + 1)
|
|
83
|
+
error.each do |field, value|
|
|
84
|
+
puts "\t\t%s: %s" % [field, value]
|
|
85
|
+
end
|
|
86
|
+
end
|
|
87
|
+
end
|
|
88
|
+
end
|
|
@@ -0,0 +1,135 @@
|
|
|
1
|
+
#!/usr/bin/env ruby
|
|
2
|
+
# Encoding: utf-8
|
|
3
|
+
#
|
|
4
|
+
# Copyright:: Copyright 2011, Google Inc. All Rights Reserved.
|
|
5
|
+
#
|
|
6
|
+
# License:: Licensed under the Apache License, Version 2.0 (the "License");
|
|
7
|
+
# you may not use this file except in compliance with the License.
|
|
8
|
+
# You may obtain a copy of the License at
|
|
9
|
+
#
|
|
10
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
11
|
+
#
|
|
12
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
13
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
14
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
15
|
+
# implied.
|
|
16
|
+
# See the License for the specific language governing permissions and
|
|
17
|
+
# limitations under the License.
|
|
18
|
+
#
|
|
19
|
+
# This example gets all account changes that happened within the last 24 hours,
|
|
20
|
+
# for all your campaigns.
|
|
21
|
+
|
|
22
|
+
require 'adwords_api'
|
|
23
|
+
require 'date'
|
|
24
|
+
require 'pp'
|
|
25
|
+
|
|
26
|
+
def get_account_changes()
|
|
27
|
+
# AdwordsApi::Api will read a config file from ENV['HOME']/adwords_api.yml
|
|
28
|
+
# when called without parameters.
|
|
29
|
+
adwords = AdwordsApi::Api.new
|
|
30
|
+
|
|
31
|
+
# To enable logging of SOAP requests, set the log_level value to 'DEBUG' in
|
|
32
|
+
# the configuration file or provide your own logger:
|
|
33
|
+
# adwords.logger = Logger.new('adwords_xml.log')
|
|
34
|
+
|
|
35
|
+
campaign_srv = adwords.service(:CampaignService, API_VERSION)
|
|
36
|
+
customer_sync_srv = adwords.service(:CustomerSyncService, API_VERSION)
|
|
37
|
+
|
|
38
|
+
today_at_midnight = DateTime.parse(Date.today.to_s)
|
|
39
|
+
yesterday_at_midnight = DateTime.parse((Date.today - 1).to_s)
|
|
40
|
+
min_date_time = yesterday_at_midnight.strftime("%Y%m%d %H%M%S")
|
|
41
|
+
max_date_time = today_at_midnight.strftime("%Y%m%d %H%M%S")
|
|
42
|
+
|
|
43
|
+
# Get all the campaigns for this account.
|
|
44
|
+
selector = {
|
|
45
|
+
:fields => ['Id']
|
|
46
|
+
}
|
|
47
|
+
response = campaign_srv.get(selector)
|
|
48
|
+
|
|
49
|
+
campaign_ids = []
|
|
50
|
+
|
|
51
|
+
if response and response[:entries]
|
|
52
|
+
campaign_ids = response[:entries].map { |campaign| campaign[:id] }
|
|
53
|
+
else
|
|
54
|
+
raise StandardError, 'No campaigns were found.'
|
|
55
|
+
end
|
|
56
|
+
|
|
57
|
+
# Create a selector for CustomerSyncService.
|
|
58
|
+
selector = {
|
|
59
|
+
:campaign_ids => campaign_ids,
|
|
60
|
+
:date_time_range => {
|
|
61
|
+
:min => min_date_time,
|
|
62
|
+
:max => max_date_time
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
# Get all account changes for the campaigns.
|
|
67
|
+
campaign_changes = customer_sync_srv.get(selector)
|
|
68
|
+
|
|
69
|
+
# Display changes.
|
|
70
|
+
if campaign_changes
|
|
71
|
+
puts "Most recent change: %s" % campaign_changes[:last_change_timestamp]
|
|
72
|
+
campaign_changes[:changed_campaigns].each do |campaign|
|
|
73
|
+
puts "Campaign with ID %d was changed:" % campaign[:campaign_id]
|
|
74
|
+
puts "\tCampaign change status: '%s'" % campaign[:campaign_change_status]
|
|
75
|
+
unless ['NEW', 'FIELDS_UNCHANGED'].include?(
|
|
76
|
+
campaign[:campaign_change_status])
|
|
77
|
+
puts "\tAdded campaign criteria: '%s'" %
|
|
78
|
+
campaign[:added_campaign_criteria].pretty_inspect.chomp
|
|
79
|
+
puts "\tRemoved campaign criteria: '%s'" %
|
|
80
|
+
campaign[:removed_campaign_criteria].pretty_inspect.chomp
|
|
81
|
+
|
|
82
|
+
if campaign[:changed_ad_groups]
|
|
83
|
+
campaign[:changed_ad_groups].each do |ad_group|
|
|
84
|
+
puts "\tAd group with ID %d was changed:" % ad_group[:ad_group_id]
|
|
85
|
+
puts "\t\tAd group changed status: '%s'" %
|
|
86
|
+
ad_group[:ad_group_change_status]
|
|
87
|
+
unless ['NEW', 'FIELDS_UNCHANGED'].include?(
|
|
88
|
+
ad_group[:ad_group_change_status])
|
|
89
|
+
puts "\t\tAds changed: '%s'" %
|
|
90
|
+
ad_group[:changed_ads].pretty_inspect.chomp
|
|
91
|
+
puts "\t\tCriteria changed: '%s'" %
|
|
92
|
+
ad_group[:changed_criteria].pretty_inspect.chomp
|
|
93
|
+
puts "\t\tCriteria removed: '%s'" %
|
|
94
|
+
ad_group[:removed_criteria].pretty_inspect.chomp
|
|
95
|
+
end
|
|
96
|
+
end
|
|
97
|
+
end
|
|
98
|
+
end
|
|
99
|
+
puts
|
|
100
|
+
end
|
|
101
|
+
else
|
|
102
|
+
puts 'No account changes were found.'
|
|
103
|
+
end
|
|
104
|
+
end
|
|
105
|
+
|
|
106
|
+
if __FILE__ == $0
|
|
107
|
+
API_VERSION = :v201603
|
|
108
|
+
|
|
109
|
+
begin
|
|
110
|
+
get_account_changes()
|
|
111
|
+
|
|
112
|
+
# Authorization error.
|
|
113
|
+
rescue AdsCommon::Errors::OAuth2VerificationRequired => e
|
|
114
|
+
puts "Authorization credentials are not valid. Edit adwords_api.yml for " +
|
|
115
|
+
"OAuth2 client ID and secret and run misc/setup_oauth2.rb example " +
|
|
116
|
+
"to retrieve and store OAuth2 tokens."
|
|
117
|
+
puts "See this wiki page for more details:\n\n " +
|
|
118
|
+
'https://github.com/googleads/google-api-ads-ruby/wiki/OAuth2'
|
|
119
|
+
|
|
120
|
+
# HTTP errors.
|
|
121
|
+
rescue AdsCommon::Errors::HttpError => e
|
|
122
|
+
puts "HTTP Error: %s" % e
|
|
123
|
+
|
|
124
|
+
# API errors.
|
|
125
|
+
rescue AdwordsApi::Errors::ApiException => e
|
|
126
|
+
puts "Message: %s" % e.message
|
|
127
|
+
puts 'Errors:'
|
|
128
|
+
e.errors.each_with_index do |error, index|
|
|
129
|
+
puts "\tError [%d]:" % (index + 1)
|
|
130
|
+
error.each do |field, value|
|
|
131
|
+
puts "\t\t%s: %s" % [field, value]
|
|
132
|
+
end
|
|
133
|
+
end
|
|
134
|
+
end
|
|
135
|
+
end
|
|
@@ -0,0 +1,132 @@
|
|
|
1
|
+
#!/usr/bin/env ruby
|
|
2
|
+
# Encoding: utf-8
|
|
3
|
+
#
|
|
4
|
+
# Copyright:: Copyright 2011, Google Inc. All Rights Reserved.
|
|
5
|
+
#
|
|
6
|
+
# License:: Licensed under the Apache License, Version 2.0 (the "License");
|
|
7
|
+
# you may not use this file except in compliance with the License.
|
|
8
|
+
# You may obtain a copy of the License at
|
|
9
|
+
#
|
|
10
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
11
|
+
#
|
|
12
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
13
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
14
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
15
|
+
# implied.
|
|
16
|
+
# See the License for the specific language governing permissions and
|
|
17
|
+
# limitations under the License.
|
|
18
|
+
#
|
|
19
|
+
# This example illustrates how to retrieve the account hierarchy under an
|
|
20
|
+
# account. This example needs to be run against an AdWords manager account.
|
|
21
|
+
|
|
22
|
+
require 'adwords_api'
|
|
23
|
+
require 'adwords_api/utils'
|
|
24
|
+
|
|
25
|
+
def get_account_hierarchy()
|
|
26
|
+
# AdwordsApi::Api will read a config file from ENV['HOME']/adwords_api.yml
|
|
27
|
+
# when called without parameters.
|
|
28
|
+
adwords = AdwordsApi::Api.new
|
|
29
|
+
|
|
30
|
+
# To enable logging of SOAP requests, set the log_level value to 'DEBUG' in
|
|
31
|
+
# the configuration file or provide your own logger:
|
|
32
|
+
# adwords.logger = Logger.new('adwords_xml.log')
|
|
33
|
+
|
|
34
|
+
managed_customer_srv = adwords.service(:ManagedCustomerService, API_VERSION)
|
|
35
|
+
|
|
36
|
+
# Get the account hierarchy for this account.
|
|
37
|
+
selector = {
|
|
38
|
+
:fields => ['CustomerId', 'Name'],
|
|
39
|
+
:paging => {
|
|
40
|
+
:start_index => 0,
|
|
41
|
+
:number_results => PAGE_SIZE
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
# Set initial values
|
|
46
|
+
offset, page = 0, {}
|
|
47
|
+
|
|
48
|
+
accounts = {}
|
|
49
|
+
child_links = {}
|
|
50
|
+
parent_links = {}
|
|
51
|
+
root_account = nil
|
|
52
|
+
|
|
53
|
+
begin
|
|
54
|
+
page = managed_customer_srv.get(selector)
|
|
55
|
+
|
|
56
|
+
if page and page[:entries]
|
|
57
|
+
if page[:links]
|
|
58
|
+
page[:links].each do |link|
|
|
59
|
+
unless child_links.include?(link[:manager_customer_id])
|
|
60
|
+
child_links[link[:manager_customer_id]] = []
|
|
61
|
+
end
|
|
62
|
+
child_links[link[:manager_customer_id]] << link
|
|
63
|
+
unless parent_links.include?(link[:client_customer_id])
|
|
64
|
+
parent_links[link[:client_customer_id]] = []
|
|
65
|
+
end
|
|
66
|
+
parent_links[link[:client_customer_id]] << link
|
|
67
|
+
end
|
|
68
|
+
end
|
|
69
|
+
|
|
70
|
+
page[:entries].each do |account|
|
|
71
|
+
accounts[account[:customer_id]] = account
|
|
72
|
+
unless parent_links.include?(account[:customer_id])
|
|
73
|
+
root_account = account
|
|
74
|
+
end
|
|
75
|
+
end
|
|
76
|
+
|
|
77
|
+
# Increment values to request the next page.
|
|
78
|
+
offset += PAGE_SIZE
|
|
79
|
+
selector[:paging][:start_index] = offset
|
|
80
|
+
end
|
|
81
|
+
end while page[:total_num_entries] > offset
|
|
82
|
+
|
|
83
|
+
if root_account.nil?
|
|
84
|
+
puts "Unable to determine a root account."
|
|
85
|
+
else
|
|
86
|
+
puts "CustomerId, Name"
|
|
87
|
+
display_account_tree(root_account, accounts, child_links, 0)
|
|
88
|
+
end
|
|
89
|
+
end
|
|
90
|
+
|
|
91
|
+
def display_account_tree(account, accounts, links, depth)
|
|
92
|
+
prefix = '-' * depth * 2
|
|
93
|
+
puts '%s%s, %s' % [prefix, account[:customer_id], account[:name]]
|
|
94
|
+
if links.include?(account[:customer_id])
|
|
95
|
+
links[account[:customer_id]].each do |child_link|
|
|
96
|
+
child_account = accounts[child_link[:client_customer_id]]
|
|
97
|
+
display_account_tree(child_account, accounts, links, depth + 1)
|
|
98
|
+
end
|
|
99
|
+
end
|
|
100
|
+
end
|
|
101
|
+
|
|
102
|
+
if __FILE__ == $0
|
|
103
|
+
API_VERSION = :v201603
|
|
104
|
+
PAGE_SIZE = 500
|
|
105
|
+
|
|
106
|
+
begin
|
|
107
|
+
get_account_hierarchy()
|
|
108
|
+
|
|
109
|
+
# Authorization error.
|
|
110
|
+
rescue AdsCommon::Errors::OAuth2VerificationRequired => e
|
|
111
|
+
puts "Authorization credentials are not valid. Edit adwords_api.yml for " +
|
|
112
|
+
"OAuth2 client ID and secret and run misc/setup_oauth2.rb example " +
|
|
113
|
+
"to retrieve and store OAuth2 tokens."
|
|
114
|
+
puts "See this wiki page for more details:\n\n " +
|
|
115
|
+
'https://github.com/googleads/google-api-ads-ruby/wiki/OAuth2'
|
|
116
|
+
|
|
117
|
+
# HTTP errors.
|
|
118
|
+
rescue AdsCommon::Errors::HttpError => e
|
|
119
|
+
puts "HTTP Error: %s" % e
|
|
120
|
+
|
|
121
|
+
# API errors.
|
|
122
|
+
rescue AdwordsApi::Errors::ApiException => e
|
|
123
|
+
puts "Message: %s" % e.message
|
|
124
|
+
puts 'Errors:'
|
|
125
|
+
e.errors.each_with_index do |error, index|
|
|
126
|
+
puts "\tError [%d]:" % (index + 1)
|
|
127
|
+
error.each do |field, value|
|
|
128
|
+
puts "\t\t%s: %s" % [field, value]
|
|
129
|
+
end
|
|
130
|
+
end
|
|
131
|
+
end
|
|
132
|
+
end
|