google-dfp-api 0.3.3 → 0.4.0
Sign up to get free protection for your applications and to get access to all the features.
- data/ChangeLog +4 -0
- data/dfp_api.yml +4 -1
- data/examples/v201208/audience_segment_service/get_all_audience_segments.rb +93 -0
- data/examples/v201208/common/error_handling.rb +76 -0
- data/examples/v201208/common/oauth2_handling.rb +128 -0
- data/examples/v201208/common/oauth_handling.rb +131 -0
- data/examples/v201208/company_service/create_companies.rb +81 -0
- data/examples/v201208/company_service/get_all_companies.rb +92 -0
- data/examples/v201208/company_service/get_companies_by_statement.rb +88 -0
- data/examples/v201208/company_service/get_company.rb +72 -0
- data/examples/v201208/company_service/update_companies.rb +95 -0
- data/examples/v201208/content_service/get_all_content.rb +94 -0
- data/examples/v201208/content_service/get_content_by_category.rb +136 -0
- data/examples/v201208/creative_service/copy_image_creatives.rb +115 -0
- data/examples/v201208/creative_service/create_creative_from_template.rb +139 -0
- data/examples/v201208/creative_service/create_creatives.rb +106 -0
- data/examples/v201208/creative_service/create_custom_creative.rb +104 -0
- data/examples/v201208/creative_service/get_all_creatives.rb +93 -0
- data/examples/v201208/creative_service/get_creative.rb +72 -0
- data/examples/v201208/creative_service/get_creatives_by_statement.rb +87 -0
- data/examples/v201208/creative_service/update_creatives.rb +96 -0
- data/examples/v201208/creative_set_service/associate_creative_set_to_line_item.rb +77 -0
- data/examples/v201208/creative_set_service/create_creative_set.rb +83 -0
- data/examples/v201208/creative_set_service/get_all_creative_sets.rb +94 -0
- data/examples/v201208/creative_set_service/get_creative_sets_by_statement.rb +90 -0
- data/examples/v201208/creative_set_service/update_creative_sets.rb +85 -0
- data/examples/v201208/creative_template_service/get_all_creative_templates.rb +94 -0
- data/examples/v201208/creative_template_service/get_creative_template.rb +74 -0
- data/examples/v201208/creative_template_service/get_creative_templates_by_statement.rb +80 -0
- data/examples/v201208/custom_field_service/create_custom_field_options.rb +87 -0
- data/examples/v201208/custom_field_service/create_custom_fields.rb +86 -0
- data/examples/v201208/custom_field_service/deactivate_all_line_item_custom_fields.rb +112 -0
- data/examples/v201208/custom_field_service/get_all_custom_fields.rb +102 -0
- data/examples/v201208/custom_field_service/get_all_line_item_custom_fields.rb +86 -0
- data/examples/v201208/custom_field_service/set_line_item_custom_field_value.rb +135 -0
- data/examples/v201208/custom_field_service/update_custom_fields.rb +83 -0
- data/examples/v201208/custom_targeting_service/create_custom_targeting_keys_and_values.rb +140 -0
- data/examples/v201208/custom_targeting_service/delete_custom_targeting_keys.rb +121 -0
- data/examples/v201208/custom_targeting_service/delete_custom_targeting_values.rb +125 -0
- data/examples/v201208/custom_targeting_service/get_all_custom_targeting_keys_and_values.rb +148 -0
- data/examples/v201208/custom_targeting_service/get_custom_targeting_keys_by_statement.rb +92 -0
- data/examples/v201208/custom_targeting_service/get_custom_targeting_values_by_statement.rb +98 -0
- data/examples/v201208/custom_targeting_service/update_custom_targeting_keys.rb +94 -0
- data/examples/v201208/custom_targeting_service/update_custom_targeting_values.rb +106 -0
- data/examples/v201208/forecast_service/get_forecast.rb +107 -0
- data/examples/v201208/forecast_service/get_forecast_by_id.rb +80 -0
- data/examples/v201208/inventory_service/create_ad_units.rb +101 -0
- data/examples/v201208/inventory_service/create_mobile_ad_unit.rb +101 -0
- data/examples/v201208/inventory_service/create_video_ad_unit.rb +108 -0
- data/examples/v201208/inventory_service/deactivate_ad_units.rb +119 -0
- data/examples/v201208/inventory_service/get_ad_unit.rb +72 -0
- data/examples/v201208/inventory_service/get_ad_unit_sizes.rb +85 -0
- data/examples/v201208/inventory_service/get_ad_units_by_statement.rb +96 -0
- data/examples/v201208/inventory_service/get_all_ad_units.rb +93 -0
- data/examples/v201208/inventory_service/update_ad_units.rb +94 -0
- data/examples/v201208/label_service/create_labels.rb +83 -0
- data/examples/v201208/label_service/deactivate_labels.rb +118 -0
- data/examples/v201208/label_service/get_all_labels.rb +95 -0
- data/examples/v201208/label_service/get_label.rb +76 -0
- data/examples/v201208/label_service/get_labels_by_statement.rb +81 -0
- data/examples/v201208/label_service/update_labels.rb +102 -0
- data/examples/v201208/line_item_creative_association_service/create_licas.rb +94 -0
- data/examples/v201208/line_item_creative_association_service/deactivate_licas.rb +127 -0
- data/examples/v201208/line_item_creative_association_service/get_all_licas.rb +98 -0
- data/examples/v201208/line_item_creative_association_service/get_lica.rb +77 -0
- data/examples/v201208/line_item_creative_association_service/get_licas_by_statement.rb +91 -0
- data/examples/v201208/line_item_creative_association_service/update_licas.rb +91 -0
- data/examples/v201208/line_item_service/activate_line_items.rb +131 -0
- data/examples/v201208/line_item_service/create_line_items.rb +177 -0
- data/examples/v201208/line_item_service/create_mobile_line_item.rb +135 -0
- data/examples/v201208/line_item_service/create_video_line_item.rb +156 -0
- data/examples/v201208/line_item_service/get_all_line_items.rb +94 -0
- data/examples/v201208/line_item_service/get_line_item.rb +74 -0
- data/examples/v201208/line_item_service/get_line_items_by_statement.rb +93 -0
- data/examples/v201208/line_item_service/get_recently_updated_line_items.rb +98 -0
- data/examples/v201208/line_item_service/target_custom_criteria.rb +129 -0
- data/examples/v201208/line_item_service/update_line_items.rb +109 -0
- data/examples/v201208/network_service/get_all_networks.rb +74 -0
- data/examples/v201208/network_service/get_current_network.rb +66 -0
- data/examples/v201208/network_service/make_test_network.rb +79 -0
- data/examples/v201208/order_service/approve_orders.rb +122 -0
- data/examples/v201208/order_service/create_orders.rb +92 -0
- data/examples/v201208/order_service/get_all_orders.rb +93 -0
- data/examples/v201208/order_service/get_order.rb +74 -0
- data/examples/v201208/order_service/get_orders_by_statement.rb +90 -0
- data/examples/v201208/order_service/update_orders.rb +95 -0
- data/examples/v201208/placement_service/create_placements.rb +131 -0
- data/examples/v201208/placement_service/deactivate_placements.rb +118 -0
- data/examples/v201208/placement_service/get_all_placements.rb +93 -0
- data/examples/v201208/placement_service/get_placement.rb +74 -0
- data/examples/v201208/placement_service/get_placements_by_statement.rb +86 -0
- data/examples/v201208/placement_service/update_placements.rb +97 -0
- data/examples/v201208/publisher_query_language_service/get_all_cities.rb +90 -0
- data/examples/v201208/report_service/download_report.rb +81 -0
- data/examples/v201208/report_service/run_delivery_report.rb +103 -0
- data/examples/v201208/report_service/run_inventory_report.rb +96 -0
- data/examples/v201208/report_service/run_merged_delivery_report.rb +94 -0
- data/examples/v201208/report_service/run_report_with_custom_fields.rb +135 -0
- data/examples/v201208/report_service/run_sales_report.rb +92 -0
- data/examples/v201208/suggested_ad_unit_service/approve_all_suggested_ad_units.rb +109 -0
- data/examples/v201208/suggested_ad_unit_service/get_all_suggested_ad_units.rb +96 -0
- data/examples/v201208/suggested_ad_unit_service/get_suggested_ad_unit.rb +75 -0
- data/examples/v201208/suggested_ad_unit_service/get_suggested_ad_units_by_statement.rb +92 -0
- data/examples/v201208/team_service/create_teams.rb +83 -0
- data/examples/v201208/team_service/get_all_teams.rb +92 -0
- data/examples/v201208/team_service/get_team.rb +74 -0
- data/examples/v201208/team_service/get_teams_by_statement.rb +78 -0
- data/examples/v201208/team_service/update_teams.rb +95 -0
- data/examples/v201208/third_party_slot_service/archive_third_party_slots.rb +125 -0
- data/examples/v201208/third_party_slot_service/create_third_party_slot.rb +91 -0
- data/examples/v201208/third_party_slot_service/get_all_third_party_slots.rb +93 -0
- data/examples/v201208/third_party_slot_service/get_third_party_slot_by_statement.rb +86 -0
- data/examples/v201208/third_party_slot_service/update_third_party_slots.rb +95 -0
- data/examples/v201208/user_service/create_users.rb +89 -0
- data/examples/v201208/user_service/deactivate_users.rb +97 -0
- data/examples/v201208/user_service/get_all_roles.rb +73 -0
- data/examples/v201208/user_service/get_all_users.rb +93 -0
- data/examples/v201208/user_service/get_current_user.rb +66 -0
- data/examples/v201208/user_service/get_user.rb +73 -0
- data/examples/v201208/user_service/get_users_by_statement.rb +79 -0
- data/examples/v201208/user_service/update_users.rb +89 -0
- data/examples/v201208/user_team_association_service/create_user_team_associations.rb +86 -0
- data/examples/v201208/user_team_association_service/delete_user_team_associations.rb +111 -0
- data/examples/v201208/user_team_association_service/get_all_user_team_associations.rb +94 -0
- data/examples/v201208/user_team_association_service/get_user_team_association.rb +76 -0
- data/examples/v201208/user_team_association_service/get_user_team_associations_by_statement.rb +94 -0
- data/examples/v201208/user_team_association_service/update_user_team_associations.rb +102 -0
- data/lib/dfp_api.rb +6 -9
- data/lib/dfp_api/api_config.rb +14 -5
- data/lib/dfp_api/credential_handler.rb +5 -17
- data/lib/dfp_api/errors.rb +7 -3
- data/lib/dfp_api/v201108/company_service.rb +1 -1
- data/lib/dfp_api/v201108/company_service_registry.rb +3 -3
- data/lib/dfp_api/v201108/creative_service.rb +1 -1
- data/lib/dfp_api/v201108/creative_service_registry.rb +3 -3
- data/lib/dfp_api/v201108/custom_targeting_service.rb +1 -1
- data/lib/dfp_api/v201108/custom_targeting_service_registry.rb +3 -3
- data/lib/dfp_api/v201108/forecast_service.rb +1 -1
- data/lib/dfp_api/v201108/forecast_service_registry.rb +3 -3
- data/lib/dfp_api/v201108/inventory_service.rb +1 -1
- data/lib/dfp_api/v201108/inventory_service_registry.rb +3 -3
- data/lib/dfp_api/v201108/label_service.rb +1 -1
- data/lib/dfp_api/v201108/label_service_registry.rb +3 -3
- data/lib/dfp_api/v201108/line_item_creative_association_service.rb +1 -1
- data/lib/dfp_api/v201108/line_item_creative_association_service_registry.rb +3 -3
- data/lib/dfp_api/v201108/line_item_service.rb +1 -1
- data/lib/dfp_api/v201108/line_item_service_registry.rb +3 -3
- data/lib/dfp_api/v201108/network_service.rb +1 -1
- data/lib/dfp_api/v201108/network_service_registry.rb +3 -3
- data/lib/dfp_api/v201108/order_service.rb +1 -1
- data/lib/dfp_api/v201108/order_service_registry.rb +3 -3
- data/lib/dfp_api/v201108/placement_service.rb +1 -1
- data/lib/dfp_api/v201108/placement_service_registry.rb +3 -3
- data/lib/dfp_api/v201108/publisher_query_language_service.rb +1 -1
- data/lib/dfp_api/v201108/publisher_query_language_service_registry.rb +3 -3
- data/lib/dfp_api/v201108/report_service.rb +1 -1
- data/lib/dfp_api/v201108/report_service_registry.rb +3 -3
- data/lib/dfp_api/v201108/third_party_slot_service.rb +1 -1
- data/lib/dfp_api/v201108/third_party_slot_service_registry.rb +3 -3
- data/lib/dfp_api/v201108/user_service.rb +1 -1
- data/lib/dfp_api/v201108/user_service_registry.rb +3 -3
- data/lib/dfp_api/v201111/company_service.rb +1 -1
- data/lib/dfp_api/v201111/company_service_registry.rb +3 -3
- data/lib/dfp_api/v201111/content_service.rb +1 -1
- data/lib/dfp_api/v201111/content_service_registry.rb +3 -3
- data/lib/dfp_api/v201111/creative_service.rb +1 -1
- data/lib/dfp_api/v201111/creative_service_registry.rb +3 -3
- data/lib/dfp_api/v201111/creative_template_service.rb +1 -1
- data/lib/dfp_api/v201111/creative_template_service_registry.rb +3 -3
- data/lib/dfp_api/v201111/custom_targeting_service.rb +1 -1
- data/lib/dfp_api/v201111/custom_targeting_service_registry.rb +3 -3
- data/lib/dfp_api/v201111/forecast_service.rb +1 -1
- data/lib/dfp_api/v201111/forecast_service_registry.rb +3 -3
- data/lib/dfp_api/v201111/inventory_service.rb +1 -1
- data/lib/dfp_api/v201111/inventory_service_registry.rb +3 -3
- data/lib/dfp_api/v201111/label_service.rb +1 -1
- data/lib/dfp_api/v201111/label_service_registry.rb +3 -3
- data/lib/dfp_api/v201111/line_item_creative_association_service.rb +1 -1
- data/lib/dfp_api/v201111/line_item_creative_association_service_registry.rb +3 -3
- data/lib/dfp_api/v201111/line_item_service.rb +1 -1
- data/lib/dfp_api/v201111/line_item_service_registry.rb +3 -3
- data/lib/dfp_api/v201111/network_service.rb +1 -1
- data/lib/dfp_api/v201111/network_service_registry.rb +3 -3
- data/lib/dfp_api/v201111/order_service.rb +1 -1
- data/lib/dfp_api/v201111/order_service_registry.rb +3 -3
- data/lib/dfp_api/v201111/placement_service.rb +1 -1
- data/lib/dfp_api/v201111/placement_service_registry.rb +3 -3
- data/lib/dfp_api/v201111/publisher_query_language_service.rb +1 -1
- data/lib/dfp_api/v201111/publisher_query_language_service_registry.rb +3 -3
- data/lib/dfp_api/v201111/report_service.rb +1 -1
- data/lib/dfp_api/v201111/report_service_registry.rb +3 -3
- data/lib/dfp_api/v201111/suggested_ad_unit_service.rb +1 -1
- data/lib/dfp_api/v201111/suggested_ad_unit_service_registry.rb +3 -3
- data/lib/dfp_api/v201111/third_party_slot_service.rb +1 -1
- data/lib/dfp_api/v201111/third_party_slot_service_registry.rb +3 -3
- data/lib/dfp_api/v201111/user_service.rb +1 -1
- data/lib/dfp_api/v201111/user_service_registry.rb +3 -3
- data/lib/dfp_api/v201201/company_service.rb +1 -1
- data/lib/dfp_api/v201201/company_service_registry.rb +3 -3
- data/lib/dfp_api/v201201/content_service.rb +1 -1
- data/lib/dfp_api/v201201/content_service_registry.rb +3 -3
- data/lib/dfp_api/v201201/creative_service.rb +1 -1
- data/lib/dfp_api/v201201/creative_service_registry.rb +3 -3
- data/lib/dfp_api/v201201/creative_template_service.rb +1 -1
- data/lib/dfp_api/v201201/creative_template_service_registry.rb +3 -3
- data/lib/dfp_api/v201201/custom_targeting_service.rb +1 -1
- data/lib/dfp_api/v201201/custom_targeting_service_registry.rb +3 -3
- data/lib/dfp_api/v201201/forecast_service.rb +1 -1
- data/lib/dfp_api/v201201/forecast_service_registry.rb +3 -3
- data/lib/dfp_api/v201201/inventory_service.rb +1 -1
- data/lib/dfp_api/v201201/inventory_service_registry.rb +3 -3
- data/lib/dfp_api/v201201/label_service.rb +1 -1
- data/lib/dfp_api/v201201/label_service_registry.rb +3 -3
- data/lib/dfp_api/v201201/line_item_creative_association_service.rb +1 -1
- data/lib/dfp_api/v201201/line_item_creative_association_service_registry.rb +3 -3
- data/lib/dfp_api/v201201/line_item_service.rb +1 -1
- data/lib/dfp_api/v201201/line_item_service_registry.rb +3 -3
- data/lib/dfp_api/v201201/network_service.rb +1 -1
- data/lib/dfp_api/v201201/network_service_registry.rb +3 -3
- data/lib/dfp_api/v201201/order_service.rb +1 -1
- data/lib/dfp_api/v201201/order_service_registry.rb +3 -3
- data/lib/dfp_api/v201201/placement_service.rb +1 -1
- data/lib/dfp_api/v201201/placement_service_registry.rb +3 -3
- data/lib/dfp_api/v201201/publisher_query_language_service.rb +1 -1
- data/lib/dfp_api/v201201/publisher_query_language_service_registry.rb +3 -3
- data/lib/dfp_api/v201201/report_service.rb +1 -1
- data/lib/dfp_api/v201201/report_service_registry.rb +3 -3
- data/lib/dfp_api/v201201/suggested_ad_unit_service.rb +1 -1
- data/lib/dfp_api/v201201/suggested_ad_unit_service_registry.rb +3 -3
- data/lib/dfp_api/v201201/team_service.rb +1 -1
- data/lib/dfp_api/v201201/team_service_registry.rb +3 -3
- data/lib/dfp_api/v201201/third_party_slot_service.rb +1 -1
- data/lib/dfp_api/v201201/third_party_slot_service_registry.rb +3 -3
- data/lib/dfp_api/v201201/user_service.rb +1 -1
- data/lib/dfp_api/v201201/user_service_registry.rb +3 -3
- data/lib/dfp_api/v201203/audience_segment_service.rb +1 -1
- data/lib/dfp_api/v201203/audience_segment_service_registry.rb +3 -3
- data/lib/dfp_api/v201203/company_service.rb +1 -1
- data/lib/dfp_api/v201203/company_service_registry.rb +3 -3
- data/lib/dfp_api/v201203/content_service.rb +1 -1
- data/lib/dfp_api/v201203/content_service_registry.rb +3 -3
- data/lib/dfp_api/v201203/creative_service.rb +1 -1
- data/lib/dfp_api/v201203/creative_service_registry.rb +3 -3
- data/lib/dfp_api/v201203/creative_template_service.rb +1 -1
- data/lib/dfp_api/v201203/creative_template_service_registry.rb +3 -3
- data/lib/dfp_api/v201203/custom_targeting_service.rb +1 -1
- data/lib/dfp_api/v201203/custom_targeting_service_registry.rb +3 -3
- data/lib/dfp_api/v201203/forecast_service.rb +1 -1
- data/lib/dfp_api/v201203/forecast_service_registry.rb +3 -3
- data/lib/dfp_api/v201203/inventory_service.rb +1 -1
- data/lib/dfp_api/v201203/inventory_service_registry.rb +3 -3
- data/lib/dfp_api/v201203/label_service.rb +1 -1
- data/lib/dfp_api/v201203/label_service_registry.rb +3 -3
- data/lib/dfp_api/v201203/line_item_creative_association_service.rb +1 -1
- data/lib/dfp_api/v201203/line_item_creative_association_service_registry.rb +3 -3
- data/lib/dfp_api/v201203/line_item_service.rb +1 -1
- data/lib/dfp_api/v201203/line_item_service_registry.rb +3 -3
- data/lib/dfp_api/v201203/network_service.rb +1 -1
- data/lib/dfp_api/v201203/network_service_registry.rb +3 -3
- data/lib/dfp_api/v201203/order_service.rb +1 -1
- data/lib/dfp_api/v201203/order_service_registry.rb +3 -3
- data/lib/dfp_api/v201203/placement_service.rb +1 -1
- data/lib/dfp_api/v201203/placement_service_registry.rb +3 -3
- data/lib/dfp_api/v201203/publisher_query_language_service.rb +1 -1
- data/lib/dfp_api/v201203/publisher_query_language_service_registry.rb +3 -3
- data/lib/dfp_api/v201203/report_service.rb +1 -1
- data/lib/dfp_api/v201203/report_service_registry.rb +3 -3
- data/lib/dfp_api/v201203/suggested_ad_unit_service.rb +1 -1
- data/lib/dfp_api/v201203/suggested_ad_unit_service_registry.rb +3 -3
- data/lib/dfp_api/v201203/team_service.rb +1 -1
- data/lib/dfp_api/v201203/team_service_registry.rb +3 -3
- data/lib/dfp_api/v201203/third_party_slot_service.rb +1 -1
- data/lib/dfp_api/v201203/third_party_slot_service_registry.rb +3 -3
- data/lib/dfp_api/v201203/user_service.rb +1 -1
- data/lib/dfp_api/v201203/user_service_registry.rb +3 -3
- data/lib/dfp_api/v201204/audience_segment_service.rb +1 -1
- data/lib/dfp_api/v201204/audience_segment_service_registry.rb +3 -3
- data/lib/dfp_api/v201204/company_service.rb +1 -1
- data/lib/dfp_api/v201204/company_service_registry.rb +3 -3
- data/lib/dfp_api/v201204/content_service.rb +1 -1
- data/lib/dfp_api/v201204/content_service_registry.rb +3 -3
- data/lib/dfp_api/v201204/creative_service.rb +1 -1
- data/lib/dfp_api/v201204/creative_service_registry.rb +3 -3
- data/lib/dfp_api/v201204/creative_template_service.rb +1 -1
- data/lib/dfp_api/v201204/creative_template_service_registry.rb +3 -3
- data/lib/dfp_api/v201204/custom_field_service.rb +1 -1
- data/lib/dfp_api/v201204/custom_field_service_registry.rb +3 -3
- data/lib/dfp_api/v201204/custom_targeting_service.rb +1 -1
- data/lib/dfp_api/v201204/custom_targeting_service_registry.rb +3 -3
- data/lib/dfp_api/v201204/forecast_service.rb +1 -1
- data/lib/dfp_api/v201204/forecast_service_registry.rb +3 -3
- data/lib/dfp_api/v201204/inventory_service.rb +1 -1
- data/lib/dfp_api/v201204/inventory_service_registry.rb +3 -3
- data/lib/dfp_api/v201204/label_service.rb +1 -1
- data/lib/dfp_api/v201204/label_service_registry.rb +3 -3
- data/lib/dfp_api/v201204/line_item_creative_association_service.rb +1 -1
- data/lib/dfp_api/v201204/line_item_creative_association_service_registry.rb +3 -3
- data/lib/dfp_api/v201204/line_item_service.rb +1 -1
- data/lib/dfp_api/v201204/line_item_service_registry.rb +3 -3
- data/lib/dfp_api/v201204/network_service.rb +1 -1
- data/lib/dfp_api/v201204/network_service_registry.rb +3 -3
- data/lib/dfp_api/v201204/order_service.rb +1 -1
- data/lib/dfp_api/v201204/order_service_registry.rb +3 -3
- data/lib/dfp_api/v201204/placement_service.rb +1 -1
- data/lib/dfp_api/v201204/placement_service_registry.rb +3 -3
- data/lib/dfp_api/v201204/publisher_query_language_service.rb +1 -1
- data/lib/dfp_api/v201204/publisher_query_language_service_registry.rb +3 -3
- data/lib/dfp_api/v201204/report_service.rb +1 -1
- data/lib/dfp_api/v201204/report_service_registry.rb +3 -3
- data/lib/dfp_api/v201204/suggested_ad_unit_service.rb +1 -1
- data/lib/dfp_api/v201204/suggested_ad_unit_service_registry.rb +3 -3
- data/lib/dfp_api/v201204/team_service.rb +1 -1
- data/lib/dfp_api/v201204/team_service_registry.rb +3 -3
- data/lib/dfp_api/v201204/third_party_slot_service.rb +1 -1
- data/lib/dfp_api/v201204/third_party_slot_service_registry.rb +3 -3
- data/lib/dfp_api/v201204/user_service.rb +1 -1
- data/lib/dfp_api/v201204/user_service_registry.rb +3 -3
- data/lib/dfp_api/v201204/user_team_association_service.rb +1 -1
- data/lib/dfp_api/v201204/user_team_association_service_registry.rb +3 -3
- data/lib/dfp_api/v201206/audience_segment_service.rb +1 -1
- data/lib/dfp_api/v201206/audience_segment_service_registry.rb +3 -3
- data/lib/dfp_api/v201206/company_service.rb +1 -1
- data/lib/dfp_api/v201206/company_service_registry.rb +3 -3
- data/lib/dfp_api/v201206/content_service.rb +1 -1
- data/lib/dfp_api/v201206/content_service_registry.rb +3 -3
- data/lib/dfp_api/v201206/creative_service.rb +1 -1
- data/lib/dfp_api/v201206/creative_service_registry.rb +3 -3
- data/lib/dfp_api/v201206/creative_set_service.rb +1 -1
- data/lib/dfp_api/v201206/creative_set_service_registry.rb +3 -3
- data/lib/dfp_api/v201206/creative_template_service.rb +1 -1
- data/lib/dfp_api/v201206/creative_template_service_registry.rb +3 -3
- data/lib/dfp_api/v201206/custom_field_service.rb +1 -1
- data/lib/dfp_api/v201206/custom_field_service_registry.rb +3 -3
- data/lib/dfp_api/v201206/custom_targeting_service.rb +1 -1
- data/lib/dfp_api/v201206/custom_targeting_service_registry.rb +3 -3
- data/lib/dfp_api/v201206/forecast_service.rb +1 -1
- data/lib/dfp_api/v201206/forecast_service_registry.rb +3 -3
- data/lib/dfp_api/v201206/inventory_service.rb +1 -1
- data/lib/dfp_api/v201206/inventory_service_registry.rb +3 -3
- data/lib/dfp_api/v201206/label_service.rb +1 -1
- data/lib/dfp_api/v201206/label_service_registry.rb +3 -3
- data/lib/dfp_api/v201206/line_item_creative_association_service.rb +1 -1
- data/lib/dfp_api/v201206/line_item_creative_association_service_registry.rb +3 -3
- data/lib/dfp_api/v201206/line_item_service.rb +1 -1
- data/lib/dfp_api/v201206/line_item_service_registry.rb +3 -3
- data/lib/dfp_api/v201206/network_service.rb +1 -1
- data/lib/dfp_api/v201206/network_service_registry.rb +3 -3
- data/lib/dfp_api/v201206/order_service.rb +1 -1
- data/lib/dfp_api/v201206/order_service_registry.rb +3 -3
- data/lib/dfp_api/v201206/placement_service.rb +1 -1
- data/lib/dfp_api/v201206/placement_service_registry.rb +3 -3
- data/lib/dfp_api/v201206/publisher_query_language_service.rb +1 -1
- data/lib/dfp_api/v201206/publisher_query_language_service_registry.rb +3 -3
- data/lib/dfp_api/v201206/report_service.rb +1 -1
- data/lib/dfp_api/v201206/report_service_registry.rb +3 -3
- data/lib/dfp_api/v201206/suggested_ad_unit_service.rb +1 -1
- data/lib/dfp_api/v201206/suggested_ad_unit_service_registry.rb +3 -3
- data/lib/dfp_api/v201206/team_service.rb +1 -1
- data/lib/dfp_api/v201206/team_service_registry.rb +3 -3
- data/lib/dfp_api/v201206/third_party_slot_service.rb +1 -1
- data/lib/dfp_api/v201206/third_party_slot_service_registry.rb +3 -3
- data/lib/dfp_api/v201206/user_service.rb +1 -1
- data/lib/dfp_api/v201206/user_service_registry.rb +3 -3
- data/lib/dfp_api/v201206/user_team_association_service.rb +1 -1
- data/lib/dfp_api/v201206/user_team_association_service_registry.rb +3 -3
- data/lib/dfp_api/v201208/audience_segment_service.rb +34 -0
- data/lib/dfp_api/v201208/audience_segment_service_registry.rb +46 -0
- data/lib/dfp_api/v201208/company_service.rb +54 -0
- data/lib/dfp_api/v201208/company_service_registry.rb +46 -0
- data/lib/dfp_api/v201208/content_service.rb +42 -0
- data/lib/dfp_api/v201208/content_service_registry.rb +46 -0
- data/lib/dfp_api/v201208/creative_service.rb +54 -0
- data/lib/dfp_api/v201208/creative_service_registry.rb +46 -0
- data/lib/dfp_api/v201208/creative_set_service.rb +46 -0
- data/lib/dfp_api/v201208/creative_set_service_registry.rb +46 -0
- data/lib/dfp_api/v201208/creative_template_service.rb +38 -0
- data/lib/dfp_api/v201208/creative_template_service_registry.rb +46 -0
- data/lib/dfp_api/v201208/custom_field_service.rb +78 -0
- data/lib/dfp_api/v201208/custom_field_service_registry.rb +46 -0
- data/lib/dfp_api/v201208/custom_targeting_service.rb +62 -0
- data/lib/dfp_api/v201208/custom_targeting_service_registry.rb +46 -0
- data/lib/dfp_api/v201208/forecast_service.rb +38 -0
- data/lib/dfp_api/v201208/forecast_service_registry.rb +46 -0
- data/lib/dfp_api/v201208/inventory_service.rb +62 -0
- data/lib/dfp_api/v201208/inventory_service_registry.rb +46 -0
- data/lib/dfp_api/v201208/label_service.rb +58 -0
- data/lib/dfp_api/v201208/label_service_registry.rb +46 -0
- data/lib/dfp_api/v201208/line_item_creative_association_service.rb +62 -0
- data/lib/dfp_api/v201208/line_item_creative_association_service_registry.rb +46 -0
- data/lib/dfp_api/v201208/line_item_service.rb +58 -0
- data/lib/dfp_api/v201208/line_item_service_registry.rb +46 -0
- data/lib/dfp_api/v201208/network_service.rb +46 -0
- data/lib/dfp_api/v201208/network_service_registry.rb +46 -0
- data/lib/dfp_api/v201208/order_service.rb +58 -0
- data/lib/dfp_api/v201208/order_service_registry.rb +46 -0
- data/lib/dfp_api/v201208/placement_service.rb +58 -0
- data/lib/dfp_api/v201208/placement_service_registry.rb +46 -0
- data/lib/dfp_api/v201208/publisher_query_language_service.rb +34 -0
- data/lib/dfp_api/v201208/publisher_query_language_service_registry.rb +46 -0
- data/lib/dfp_api/v201208/report_service.rb +46 -0
- data/lib/dfp_api/v201208/report_service_registry.rb +46 -0
- data/lib/dfp_api/v201208/suggested_ad_unit_service.rb +42 -0
- data/lib/dfp_api/v201208/suggested_ad_unit_service_registry.rb +46 -0
- data/lib/dfp_api/v201208/team_service.rb +54 -0
- data/lib/dfp_api/v201208/team_service_registry.rb +46 -0
- data/lib/dfp_api/v201208/third_party_slot_service.rb +46 -0
- data/lib/dfp_api/v201208/third_party_slot_service_registry.rb +46 -0
- data/lib/dfp_api/v201208/user_service.rb +66 -0
- data/lib/dfp_api/v201208/user_service_registry.rb +46 -0
- data/lib/dfp_api/v201208/user_team_association_service.rb +58 -0
- data/lib/dfp_api/v201208/user_team_association_service_registry.rb +46 -0
- data/lib/dfp_api/version.rb +1 -1
- metadata +175 -4
@@ -0,0 +1,127 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
# Encoding: utf-8
|
3
|
+
#
|
4
|
+
# Author:: api.dklimkin@gmail.com (Danial Klimkin)
|
5
|
+
#
|
6
|
+
# Copyright:: Copyright 2011, Google Inc. All Rights Reserved.
|
7
|
+
#
|
8
|
+
# License:: Licensed under the Apache License, Version 2.0 (the "License");
|
9
|
+
# you may not use this file except in compliance with the License.
|
10
|
+
# You may obtain a copy of the License at
|
11
|
+
#
|
12
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
13
|
+
#
|
14
|
+
# Unless required by applicable law or agreed to in writing, software
|
15
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
16
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
17
|
+
# implied.
|
18
|
+
# See the License for the specific language governing permissions and
|
19
|
+
# limitations under the License.
|
20
|
+
#
|
21
|
+
# This example deactivates all LICAs for the line item. To determine which LICAs
|
22
|
+
# exist, run get_all_licas.rb. To determine which line items exist, run
|
23
|
+
# get_all_line_items.rb.
|
24
|
+
#
|
25
|
+
# Tags: InventoryService.getLineItemsByStatement
|
26
|
+
# Tags: InventoryService.performAdUnitAction
|
27
|
+
|
28
|
+
require 'dfp_api'
|
29
|
+
|
30
|
+
API_VERSION = :v201208
|
31
|
+
PAGE_SIZE = 500
|
32
|
+
|
33
|
+
def deactivate_licas()
|
34
|
+
# Get DfpApi instance and load configuration from ~/dfp_api.yml.
|
35
|
+
dfp = DfpApi::Api.new
|
36
|
+
|
37
|
+
# To enable logging of SOAP requests, set the log_level value to 'DEBUG' in
|
38
|
+
# the configuration file or provide your own logger:
|
39
|
+
# dfp.logger = Logger.new('dfp_xml.log')
|
40
|
+
|
41
|
+
# Get the LineItemCreativeAssociationService.
|
42
|
+
lica_service = dfp.service(:LineItemCreativeAssociationService, API_VERSION)
|
43
|
+
|
44
|
+
# Set the line item to get LICAs by.
|
45
|
+
line_item_id = 'INSERT_LINE_ITEM_ID_HERE'.to_i
|
46
|
+
|
47
|
+
# Create statement text to select active LICAs for a given line item.
|
48
|
+
statement_text = 'WHERE lineItemId = :line_item_id AND status = :status'
|
49
|
+
|
50
|
+
statement = {
|
51
|
+
:values => [
|
52
|
+
{:key => 'line_item_id',
|
53
|
+
:value => {:value => line_item_id, :xsi_type => 'NumberValue'}},
|
54
|
+
{:key => 'status',
|
55
|
+
:value => {:value => 'ACTIVE', :xsi_type => 'TextValue'}}
|
56
|
+
]
|
57
|
+
}
|
58
|
+
|
59
|
+
# Define initial values.
|
60
|
+
offset = 0
|
61
|
+
page = {}
|
62
|
+
creative_ids = []
|
63
|
+
|
64
|
+
begin
|
65
|
+
# Create a statement to get one page with current offset.
|
66
|
+
statement[:query] = statement_text +
|
67
|
+
" LIMIT %d OFFSET %d" % [PAGE_SIZE, offset]
|
68
|
+
|
69
|
+
# Get LICAs by statement.
|
70
|
+
page =
|
71
|
+
lica_service.get_line_item_creative_associations_by_statement(statement)
|
72
|
+
|
73
|
+
if page[:results]
|
74
|
+
# Increase query offset by page size.
|
75
|
+
offset += PAGE_SIZE
|
76
|
+
|
77
|
+
page[:results].each do |lica|
|
78
|
+
puts ("%d) LICA with line item ID: %d, creative ID: %d and status: %s" +
|
79
|
+
" will be deactivated.") % [creative_ids.size, lica[:line_item_id],
|
80
|
+
lica[:creative_id], lica[:status]]
|
81
|
+
creative_ids << lica[:creative_id]
|
82
|
+
end
|
83
|
+
end
|
84
|
+
end while offset < page[:total_result_set_size]
|
85
|
+
|
86
|
+
puts "Number of LICAs to be deactivated: %d" % creative_ids.size
|
87
|
+
|
88
|
+
if !creative_ids.empty?
|
89
|
+
# Modify statement for action. Note, the values are still present.
|
90
|
+
statement[:query] = statement_text + " AND creativeId IN (%s)" %
|
91
|
+
creative_ids.join(', ')
|
92
|
+
|
93
|
+
# Perform action.
|
94
|
+
result = lica_service.perform_line_item_creative_association_action(
|
95
|
+
{:xsi_type => 'DeactivateLineItemCreativeAssociations'}, statement)
|
96
|
+
|
97
|
+
# Display results.
|
98
|
+
if result and result[:num_changes] > 0
|
99
|
+
puts "Number of LICAs deactivated: %d" % result[:num_changes]
|
100
|
+
else
|
101
|
+
puts 'No LICAs were deactivated.'
|
102
|
+
end
|
103
|
+
else
|
104
|
+
puts 'No LICAs found to deactivate.'
|
105
|
+
end
|
106
|
+
end
|
107
|
+
|
108
|
+
if __FILE__ == $0
|
109
|
+
begin
|
110
|
+
deactivate_licas()
|
111
|
+
|
112
|
+
# HTTP errors.
|
113
|
+
rescue AdsCommon::Errors::HttpError => e
|
114
|
+
puts "HTTP Error: %s" % e
|
115
|
+
|
116
|
+
# API errors.
|
117
|
+
rescue DfpApi::Errors::ApiException => e
|
118
|
+
puts "Message: %s" % e.message
|
119
|
+
puts 'Errors:'
|
120
|
+
e.errors.each_with_index do |error, index|
|
121
|
+
puts "\tError [%d]:" % (index + 1)
|
122
|
+
error.each do |field, value|
|
123
|
+
puts "\t\t%s: %s" % [field, value]
|
124
|
+
end
|
125
|
+
end
|
126
|
+
end
|
127
|
+
end
|
@@ -0,0 +1,98 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
# Encoding: utf-8
|
3
|
+
#
|
4
|
+
# Author:: api.dklimkin@gmail.com (Danial Klimkin)
|
5
|
+
#
|
6
|
+
# Copyright:: Copyright 2011, Google Inc. All Rights Reserved.
|
7
|
+
#
|
8
|
+
# License:: Licensed under the Apache License, Version 2.0 (the "License");
|
9
|
+
# you may not use this file except in compliance with the License.
|
10
|
+
# You may obtain a copy of the License at
|
11
|
+
#
|
12
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
13
|
+
#
|
14
|
+
# Unless required by applicable law or agreed to in writing, software
|
15
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
16
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
17
|
+
# implied.
|
18
|
+
# See the License for the specific language governing permissions and
|
19
|
+
# limitations under the License.
|
20
|
+
#
|
21
|
+
# This example gets all line item creative associations (LICA). To create LICAs,
|
22
|
+
# run create_licas.rb or associate_creative_set_to_line_item.rb.
|
23
|
+
#
|
24
|
+
# Tags: LineItemCreativeAssociationService.getLineItemCreativeAssociationsByStatement
|
25
|
+
|
26
|
+
require 'dfp_api'
|
27
|
+
|
28
|
+
API_VERSION = :v201208
|
29
|
+
PAGE_SIZE = 500
|
30
|
+
|
31
|
+
def get_all_licas()
|
32
|
+
# Get DfpApi instance and load configuration from ~/dfp_api.yml.
|
33
|
+
dfp = DfpApi::Api.new
|
34
|
+
|
35
|
+
# To enable logging of SOAP requests, set the log_level value to 'DEBUG' in
|
36
|
+
# the configuration file or provide your own logger:
|
37
|
+
# dfp.logger = Logger.new('dfp_xml.log')
|
38
|
+
|
39
|
+
# Get the LineItemCreativeAssociationService.
|
40
|
+
lica_service = dfp.service(:LineItemCreativeAssociationService, API_VERSION)
|
41
|
+
|
42
|
+
# Define initial values.
|
43
|
+
offset = 0
|
44
|
+
page = {}
|
45
|
+
|
46
|
+
begin
|
47
|
+
# Create statement for one page with current offset.
|
48
|
+
statement = {:query => 'LIMIT %d OFFSET %d' % [PAGE_SIZE, offset]}
|
49
|
+
|
50
|
+
# Get LICAs by statement.
|
51
|
+
page =
|
52
|
+
lica_service.get_line_item_creative_associations_by_statement(statement)
|
53
|
+
|
54
|
+
if page[:results]
|
55
|
+
# Increase query offset by page size.
|
56
|
+
offset += PAGE_SIZE
|
57
|
+
|
58
|
+
# Get the start index for printout.
|
59
|
+
start_index = page[:start_index]
|
60
|
+
|
61
|
+
# Print details about each LICA in results page.
|
62
|
+
page[:results].each_with_index do |lica, index|
|
63
|
+
creative_text = (lica[:creative_set_id] != nil) ?
|
64
|
+
'creative set ID %d' % lica[:creative_set_id] :
|
65
|
+
'creative ID %d' % lica[:creative_id]
|
66
|
+
puts '%d) LICA with line item ID: %d, %s and status: %s' %
|
67
|
+
[index + start_index, lica[:line_item_id], creative_text,
|
68
|
+
lica[:status]]
|
69
|
+
end
|
70
|
+
end
|
71
|
+
end while offset < page[:total_result_set_size]
|
72
|
+
|
73
|
+
# Print a footer
|
74
|
+
if page.include?(:total_result_set_size)
|
75
|
+
puts 'Total number of LICAs: %d' % page[:total_result_set_size]
|
76
|
+
end
|
77
|
+
end
|
78
|
+
|
79
|
+
if __FILE__ == $0
|
80
|
+
begin
|
81
|
+
get_all_licas()
|
82
|
+
|
83
|
+
# HTTP errors.
|
84
|
+
rescue AdsCommon::Errors::HttpError => e
|
85
|
+
puts 'HTTP Error: %s' % e
|
86
|
+
|
87
|
+
# API errors.
|
88
|
+
rescue DfpApi::Errors::ApiException => e
|
89
|
+
puts 'Message: %s' % e.message
|
90
|
+
puts 'Errors:'
|
91
|
+
e.errors.each_with_index do |error, index|
|
92
|
+
puts "\tError [%d]:" % (index + 1)
|
93
|
+
error.each do |field, value|
|
94
|
+
puts "\t\t%s: %s" % [field, value]
|
95
|
+
end
|
96
|
+
end
|
97
|
+
end
|
98
|
+
end
|
@@ -0,0 +1,77 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
# Encoding: utf-8
|
3
|
+
#
|
4
|
+
# Author:: api.dklimkin@gmail.com (Danial Klimkin)
|
5
|
+
#
|
6
|
+
# Copyright:: Copyright 2011, Google Inc. All Rights Reserved.
|
7
|
+
#
|
8
|
+
# License:: Licensed under the Apache License, Version 2.0 (the "License");
|
9
|
+
# you may not use this file except in compliance with the License.
|
10
|
+
# You may obtain a copy of the License at
|
11
|
+
#
|
12
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
13
|
+
#
|
14
|
+
# Unless required by applicable law or agreed to in writing, software
|
15
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
16
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
17
|
+
# implied.
|
18
|
+
# See the License for the specific language governing permissions and
|
19
|
+
# limitations under the License.
|
20
|
+
#
|
21
|
+
# This example gets a line item creative association (LICA) by the line item and
|
22
|
+
# creative ID. To determine which line items exist, run get_all_line_items.rb.
|
23
|
+
# To determine which creatives exit, run get_all_creatives.rb.
|
24
|
+
#
|
25
|
+
# Tags: LineItemCreativeAssociationService.getLineItemCreativeAssociation
|
26
|
+
|
27
|
+
require 'dfp_api'
|
28
|
+
|
29
|
+
API_VERSION = :v201208
|
30
|
+
|
31
|
+
def get_lica()
|
32
|
+
# Get DfpApi instance and load configuration from ~/dfp_api.yml.
|
33
|
+
dfp = DfpApi::Api.new
|
34
|
+
|
35
|
+
# To enable logging of SOAP requests, set the log_level value to 'DEBUG' in
|
36
|
+
# the configuration file or provide your own logger:
|
37
|
+
# dfp.logger = Logger.new('dfp_xml.log')
|
38
|
+
|
39
|
+
# Get the LineItemCreativeAssociationService.
|
40
|
+
lica_service = dfp.service(:LineItemCreativeAssociationService, API_VERSION)
|
41
|
+
|
42
|
+
# Set the line item and creative IDs to use to retrieve the LICA.
|
43
|
+
line_item_id = 'INSERT_LINE_ITEM_ID_HERE'.to_i
|
44
|
+
creative_id = 'INSERT_CREATIVE_ID_HERE'.to_i
|
45
|
+
|
46
|
+
# Get the LICA.
|
47
|
+
lica =
|
48
|
+
lica_service.get_line_item_creative_association(line_item_id, creative_id)
|
49
|
+
|
50
|
+
if lica
|
51
|
+
puts ("LICA with line item ID: %d, creative ID: %d and status: %s was " +
|
52
|
+
"found.") % [lica[:line_item_id], lica[:creative_id], lica[:status]]
|
53
|
+
else
|
54
|
+
puts 'No lica found for this ID.'
|
55
|
+
end
|
56
|
+
end
|
57
|
+
|
58
|
+
if __FILE__ == $0
|
59
|
+
begin
|
60
|
+
get_lica()
|
61
|
+
|
62
|
+
# HTTP errors.
|
63
|
+
rescue AdsCommon::Errors::HttpError => e
|
64
|
+
puts "HTTP Error: %s" % e
|
65
|
+
|
66
|
+
# API errors.
|
67
|
+
rescue DfpApi::Errors::ApiException => e
|
68
|
+
puts "Message: %s" % e.message
|
69
|
+
puts 'Errors:'
|
70
|
+
e.errors.each_with_index do |error, index|
|
71
|
+
puts "\tError [%d]:" % (index + 1)
|
72
|
+
error.each do |field, value|
|
73
|
+
puts "\t\t%s: %s" % [field, value]
|
74
|
+
end
|
75
|
+
end
|
76
|
+
end
|
77
|
+
end
|
@@ -0,0 +1,91 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
# Encoding: utf-8
|
3
|
+
#
|
4
|
+
# Author:: api.dklimkin@gmail.com (Danial Klimkin)
|
5
|
+
#
|
6
|
+
# Copyright:: Copyright 2011, Google Inc. All Rights Reserved.
|
7
|
+
#
|
8
|
+
# License:: Licensed under the Apache License, Version 2.0 (the "License");
|
9
|
+
# you may not use this file except in compliance with the License.
|
10
|
+
# You may obtain a copy of the License at
|
11
|
+
#
|
12
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
13
|
+
#
|
14
|
+
# Unless required by applicable law or agreed to in writing, software
|
15
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
16
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
17
|
+
# implied.
|
18
|
+
# See the License for the specific language governing permissions and
|
19
|
+
# limitations under the License.
|
20
|
+
#
|
21
|
+
# This example gets all line item creative associations for a given line item
|
22
|
+
# ID. The statement retrieves up to the maximum page size limit of 500. To
|
23
|
+
# create LICAs, run create_licas.rb. To determine which line items exist, run
|
24
|
+
# get_all_line_items.rb.
|
25
|
+
#
|
26
|
+
# Tags: LineItemCreativeAssociationService.getLineItemCreativeAssociationsByStatement
|
27
|
+
|
28
|
+
require 'dfp_api'
|
29
|
+
|
30
|
+
API_VERSION = :v201208
|
31
|
+
|
32
|
+
def get_licas_by_statement()
|
33
|
+
# Get DfpApi instance and load configuration from ~/dfp_api.yml.
|
34
|
+
dfp = DfpApi::Api.new
|
35
|
+
|
36
|
+
# To enable logging of SOAP requests, set the log_level value to 'DEBUG' in
|
37
|
+
# the configuration file or provide your own logger:
|
38
|
+
# dfp.logger = Logger.new('dfp_xml.log')
|
39
|
+
|
40
|
+
# Get the LineItemCreativeAssociationService.
|
41
|
+
lica_service = dfp.service(:LineItemCreativeAssociationService, API_VERSION)
|
42
|
+
|
43
|
+
# Set the line item to get LICAs by.
|
44
|
+
line_item_id = 'INSERT_LINE_ITEM_ID_HERE'.to_i
|
45
|
+
|
46
|
+
# Create a statement to only select LICAs for the given line item ID.
|
47
|
+
statement = {
|
48
|
+
:query => 'WHERE lineItemId = :line_item_id LIMIT 500',
|
49
|
+
:values => [
|
50
|
+
{:key => 'line_item_id',
|
51
|
+
:value => {:value => line_item_id, :xsi_type => 'NumberValue'}}
|
52
|
+
]
|
53
|
+
}
|
54
|
+
|
55
|
+
# Get LICAs by statement.
|
56
|
+
page =
|
57
|
+
lica_service.get_line_item_creative_associations_by_statement(statement)
|
58
|
+
|
59
|
+
if page and page[:results]
|
60
|
+
page[:results].each_with_index do |lica, index|
|
61
|
+
puts "%d) LICA with line item ID: %d, creative ID: %d and status: %s." %
|
62
|
+
[index, lica[:line_item_id], lica[:creative_id], lica[:status]]
|
63
|
+
end
|
64
|
+
end
|
65
|
+
|
66
|
+
# Print a footer.
|
67
|
+
if page.include?(:total_result_set_size)
|
68
|
+
puts "Number of results found: %d" % page[:total_result_set_size]
|
69
|
+
end
|
70
|
+
end
|
71
|
+
|
72
|
+
if __FILE__ == $0
|
73
|
+
begin
|
74
|
+
get_licas_by_statement()
|
75
|
+
|
76
|
+
# HTTP errors.
|
77
|
+
rescue AdsCommon::Errors::HttpError => e
|
78
|
+
puts "HTTP Error: %s" % e
|
79
|
+
|
80
|
+
# API errors.
|
81
|
+
rescue DfpApi::Errors::ApiException => e
|
82
|
+
puts "Message: %s" % e.message
|
83
|
+
puts 'Errors:'
|
84
|
+
e.errors.each_with_index do |error, index|
|
85
|
+
puts "\tError [%d]:" % (index + 1)
|
86
|
+
error.each do |field, value|
|
87
|
+
puts "\t\t%s: %s" % [field, value]
|
88
|
+
end
|
89
|
+
end
|
90
|
+
end
|
91
|
+
end
|
@@ -0,0 +1,91 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
# Encoding: utf-8
|
3
|
+
#
|
4
|
+
# Author:: api.dklimkin@gmail.com (Danial Klimkin)
|
5
|
+
#
|
6
|
+
# Copyright:: Copyright 2011, Google Inc. All Rights Reserved.
|
7
|
+
#
|
8
|
+
# License:: Licensed under the Apache License, Version 2.0 (the "License");
|
9
|
+
# you may not use this file except in compliance with the License.
|
10
|
+
# You may obtain a copy of the License at
|
11
|
+
#
|
12
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
13
|
+
#
|
14
|
+
# Unless required by applicable law or agreed to in writing, software
|
15
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
16
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
17
|
+
# implied.
|
18
|
+
# See the License for the specific language governing permissions and
|
19
|
+
# limitations under the License.
|
20
|
+
#
|
21
|
+
# This example updates the destination URL of all LICAs up to the first 500. To
|
22
|
+
# determine which LICAs exist, run get_all_licas.rb.
|
23
|
+
#
|
24
|
+
# Tags: LineItemCreativeAssociationService.getLineItemCreativeAssociationsByStatement
|
25
|
+
# Tags: LineItemCreativeAssociationService.updateLineItemCreativeAssociations
|
26
|
+
|
27
|
+
require 'dfp_api'
|
28
|
+
|
29
|
+
API_VERSION = :v201208
|
30
|
+
|
31
|
+
def update_licas()
|
32
|
+
# Get DfpApi instance and load configuration from ~/dfp_api.yml.
|
33
|
+
dfp = DfpApi::Api.new
|
34
|
+
|
35
|
+
# To enable logging of SOAP requests, set the log_level value to 'DEBUG' in
|
36
|
+
# the configuration file or provide your own logger:
|
37
|
+
# dfp.logger = Logger.new('dfp_xml.log')
|
38
|
+
|
39
|
+
# Get the LineItemCreativeAssociationService.
|
40
|
+
lica_service = dfp.service(:LineItemCreativeAssociationService, API_VERSION)
|
41
|
+
|
42
|
+
# Create a statement to get all LICAs.
|
43
|
+
statement = {:query => 'LIMIT 500'}
|
44
|
+
|
45
|
+
# Get LICAs by statement.
|
46
|
+
page =
|
47
|
+
lica_service.get_line_item_creative_associations_by_statement(statement)
|
48
|
+
|
49
|
+
if page[:results]
|
50
|
+
licas = page[:results]
|
51
|
+
|
52
|
+
# Update each local LICA object by changing its destination URL.
|
53
|
+
licas.each {|lica| lica[:destination_url] = 'http://news.google.com'}
|
54
|
+
|
55
|
+
# Update the LICAs on the server.
|
56
|
+
return_licas = lica_service.update_line_item_creative_associations(licas)
|
57
|
+
|
58
|
+
if return_licas
|
59
|
+
return_licas.each do |lica|
|
60
|
+
puts ("LICA with line item ID: %d and creative ID: %d was updated " +
|
61
|
+
"with destination url [%s]") %
|
62
|
+
[lica[:line_item_id], lica[:creative_id], lica[:destination_url]]
|
63
|
+
end
|
64
|
+
else
|
65
|
+
raise 'No LICAs were updated.'
|
66
|
+
end
|
67
|
+
else
|
68
|
+
puts 'No LICAs found to update.'
|
69
|
+
end
|
70
|
+
end
|
71
|
+
|
72
|
+
if __FILE__ == $0
|
73
|
+
begin
|
74
|
+
update_licas()
|
75
|
+
|
76
|
+
# HTTP errors.
|
77
|
+
rescue AdsCommon::Errors::HttpError => e
|
78
|
+
puts "HTTP Error: %s" % e
|
79
|
+
|
80
|
+
# API errors.
|
81
|
+
rescue DfpApi::Errors::ApiException => e
|
82
|
+
puts "Message: %s" % e.message
|
83
|
+
puts 'Errors:'
|
84
|
+
e.errors.each_with_index do |error, index|
|
85
|
+
puts "\tError [%d]:" % (index + 1)
|
86
|
+
error.each do |field, value|
|
87
|
+
puts "\t\t%s: %s" % [field, value]
|
88
|
+
end
|
89
|
+
end
|
90
|
+
end
|
91
|
+
end
|