soapy_bing 0.3.1 → 0.4.0
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/.ruby-version +1 -1
- data/Gemfile +1 -0
- data/README.md +18 -18
- data/Rakefile +1 -0
- data/lib/soapy_bing.rb +5 -1
- data/lib/soapy_bing/account.rb +1 -0
- data/lib/soapy_bing/accounts.rb +13 -17
- data/lib/soapy_bing/ads.rb +18 -41
- data/lib/soapy_bing/ads/campaign_performance_report.rb +49 -0
- data/lib/soapy_bing/ads/campaigns.rb +106 -0
- data/lib/soapy_bing/ads/parsers/bulk_csv_parser.rb +34 -0
- data/lib/soapy_bing/ads/parsers/report_csv_parser.rb +45 -0
- data/lib/soapy_bing/ads/report.rb +93 -0
- data/lib/soapy_bing/campaign_management.rb +21 -0
- data/lib/soapy_bing/country_codes.rb +17 -0
- data/lib/soapy_bing/country_codes.yml +727 -0
- data/lib/soapy_bing/customer.rb +1 -0
- data/lib/soapy_bing/helpers.rb +1 -1
- data/lib/soapy_bing/helpers/zip_downloader.rb +1 -0
- data/lib/soapy_bing/oauth_credentials.rb +1 -0
- data/lib/soapy_bing/param_guard.rb +1 -0
- data/lib/soapy_bing/service.rb +69 -0
- data/lib/soapy_bing/service_operation.rb +62 -0
- data/lib/soapy_bing/version.rb +2 -1
- data/lib/soapy_bing/wsdl/ad_insight.wsdl +1 -0
- data/lib/soapy_bing/wsdl/bulk.wsdl +1 -0
- data/lib/soapy_bing/wsdl/campaign_management.wsdl +1 -0
- data/lib/soapy_bing/wsdl/customer_billing.wsdl +1 -0
- data/lib/soapy_bing/wsdl/customer_management.wsdl +1 -0
- data/lib/soapy_bing/wsdl/reporting.wsdl +1 -0
- data/lib/tasks/console.rake +1 -0
- data/lib/tasks/coverage.rake +1 -0
- data/lib/tasks/spec.rake +1 -0
- data/lib/tasks/upate_wsdl_files.rake +23 -0
- data/lib/tasks/update_country_codes.rake +24 -0
- data/soapy_bing.gemspec +2 -1
- data/spec/fixtures/ads/campaign_performance_report.csv +37 -0
- data/spec/fixtures/ads/campaign_performance_report.json +170 -0
- data/spec/fixtures/ads/campaigns_by_account_id.csv +7 -0
- data/spec/fixtures/{bulk/campaigns.json → ads/campaigns_by_account_id.json} +496 -240
- data/spec/fixtures/ads/campaigns_by_campaign_ids.csv +5 -0
- data/spec/fixtures/ads/campaigns_by_campaign_ids.json +910 -0
- data/spec/fixtures/vcr_cassettes/SoapyBing_Accounts/_list/returns_a_list_of_SoapyBing_Account_objects.yml +27 -27
- data/spec/fixtures/vcr_cassettes/SoapyBing_Ads/_campaigns/by_account_id/returns_parsed_rows.yml +301 -0
- data/spec/fixtures/vcr_cassettes/SoapyBing_Ads/_campaigns/by_campaign_ids/returns_parsed_rows.yml +300 -0
- data/spec/fixtures/vcr_cassettes/SoapyBing_CampaignManagement/_get_geo_locations/returns_a_list_of_geo_locations_hashes.yml +154 -0
- data/spec/fixtures/vcr_cassettes/campaign_performance_report/with_pending_status.yml +65 -94
- data/spec/fixtures/vcr_cassettes/campaign_performance_report/with_successful_empty_response.yml +511 -0
- data/spec/fixtures/vcr_cassettes/campaign_performance_report/with_successful_response.yml +384 -0
- data/spec/integration/soapy_bing/accounts_spec.rb +1 -0
- data/spec/integration/soapy_bing/ads_campaigns_spec.rb +85 -0
- data/spec/integration/soapy_bing/campaign_management_spec.rb +22 -0
- data/spec/integration/soapy_bing/oauth_credentials_spec.rb +1 -0
- data/spec/simplecov_setup.rb +1 -0
- data/spec/soapy_bing/account_spec.rb +6 -2
- data/spec/soapy_bing/accounts_spec.rb +47 -0
- data/spec/soapy_bing/ads/campaign_performance_report_spec.rb +79 -0
- data/spec/soapy_bing/ads/campaigns_spec.rb +99 -0
- data/spec/soapy_bing/ads/{bulk/parsers/csv_parser_spec.rb → parsers/bulk_csv_parser_spec.rb} +5 -4
- data/spec/soapy_bing/ads/{reports/parsers/csv_parser_spec.rb → parsers/report_csv_parser_spec.rb} +6 -4
- data/spec/soapy_bing/country_codes_spec.rb +39 -0
- data/spec/soapy_bing/helpers/zip_downloader_spec.rb +2 -0
- data/spec/soapy_bing/oauth_credentials_spec.rb +6 -2
- data/spec/soapy_bing/param_guard_spec.rb +2 -0
- data/spec/soapy_bing/service_spec.rb +56 -0
- data/spec/spec_helper.rb +1 -0
- data/spec/support/dotenv.rb +1 -0
- data/spec/support/vcr.rb +75 -6
- metadata +74 -118
- data/lib/soapy_bing/ads/bulk.rb +0 -3
- data/lib/soapy_bing/ads/bulk/campaigns.rb +0 -65
- data/lib/soapy_bing/ads/bulk/parsers.rb +0 -2
- data/lib/soapy_bing/ads/bulk/parsers/csv_parser.rb +0 -35
- data/lib/soapy_bing/ads/reports.rb +0 -4
- data/lib/soapy_bing/ads/reports/base.rb +0 -74
- data/lib/soapy_bing/ads/reports/campaign_performance_report.rb +0 -24
- data/lib/soapy_bing/ads/reports/parsers.rb +0 -2
- data/lib/soapy_bing/ads/reports/parsers/csv_parser.rb +0 -46
- data/lib/soapy_bing/helpers/class_name.rb +0 -10
- data/lib/soapy_bing/soap.rb +0 -4
- data/lib/soapy_bing/soap/request.rb +0 -10
- data/lib/soapy_bing/soap/request/base.rb +0 -38
- data/lib/soapy_bing/soap/request/download_campaigns_by_account_ids_request.rb +0 -17
- data/lib/soapy_bing/soap/request/get_accounts_info_request.rb +0 -17
- data/lib/soapy_bing/soap/request/get_ad_groups_by_campaign_id_request.rb +0 -17
- data/lib/soapy_bing/soap/request/get_ads_by_ad_group_id_request.rb +0 -17
- data/lib/soapy_bing/soap/request/get_bulk_download_status_request.rb +0 -17
- data/lib/soapy_bing/soap/request/get_targets_by_campaign_ids_request.rb +0 -17
- data/lib/soapy_bing/soap/request/poll_generate_report_request.rb +0 -34
- data/lib/soapy_bing/soap/request/submit_generate_report_request.rb +0 -17
- data/lib/soapy_bing/soap/response.rb +0 -14
- data/lib/soapy_bing/soap/response/base.rb +0 -17
- data/lib/soapy_bing/soap/response/download_campaigns_by_account_ids_response.rb +0 -12
- data/lib/soapy_bing/soap/response/get_accounts_info_response.rb +0 -12
- data/lib/soapy_bing/soap/response/get_ad_groups_by_campaign_id_response.rb +0 -12
- data/lib/soapy_bing/soap/response/get_ads_by_ad_group_id_response.rb +0 -12
- data/lib/soapy_bing/soap/response/get_bulk_download_status_response.rb +0 -17
- data/lib/soapy_bing/soap/response/get_targets_by_campaign_ids_response.rb +0 -12
- data/lib/soapy_bing/soap/response/payload.rb +0 -28
- data/lib/soapy_bing/soap/response/poll_generate_report_response.rb +0 -14
- data/lib/soapy_bing/soap/response/report_status.rb +0 -34
- data/lib/soapy_bing/soap/response/submit_generate_report_response.rb +0 -12
- data/lib/soapy_bing/soap/template_renderer.rb +0 -22
- data/lib/soapy_bing/soap/templates/download_campaigns_by_account_ids.xml.erb +0 -22
- data/lib/soapy_bing/soap/templates/get_accounts_info.xml.erb +0 -12
- data/lib/soapy_bing/soap/templates/get_ad_groups_by_campaign_id.xml.erb +0 -15
- data/lib/soapy_bing/soap/templates/get_ads_by_ad_group_id.xml.erb +0 -15
- data/lib/soapy_bing/soap/templates/get_bulk_download_status.xml.erb +0 -15
- data/lib/soapy_bing/soap/templates/get_targets_by_campaign_ids.xml.erb +0 -20
- data/lib/soapy_bing/soap/templates/poll_generate_report.xml.erb +0 -18
- data/lib/soapy_bing/soap/templates/submit_generate_report.xml.erb +0 -46
- data/spec/fixtures/bulk/campaigns.csv +0 -8
- data/spec/fixtures/get_ad_groups_by_campaign_id.json +0 -587
- data/spec/fixtures/get_ads_by_ad_group_id.json +0 -218
- data/spec/fixtures/get_targets_by_campaign_ids.json +0 -81
- data/spec/fixtures/reports/campaign_performance_report.csv +0 -37
- data/spec/fixtures/reports/campaign_performance_report.json +0 -146
- data/spec/fixtures/soap_templates/simple.xml.erb +0 -2
- data/spec/fixtures/vcr_cassettes/SoapyBing_Ads/_get_ad_groups_by_campaign_id/1_1_1.yml +0 -150
- data/spec/fixtures/vcr_cassettes/SoapyBing_Ads/_get_ads_by_ad_group_id/1_2_1.yml +0 -141
- data/spec/fixtures/vcr_cassettes/SoapyBing_Ads/_get_targets_by_campaign_ids/1_3_1.yml +0 -111
- data/spec/fixtures/vcr_cassettes/SoapyBing_Ads_Bulk_Campaigns/_result_file_url/returns_result_file_url.yml +0 -216
- data/spec/fixtures/vcr_cassettes/campaign_performance_report/with_successful_status.yml +0 -284
- data/spec/integration/soapy_bing/ads/bulk/campaigns_spec.rb +0 -35
- data/spec/integration/soapy_bing/ads/reports/campaign_performance_report_spec.rb +0 -40
- data/spec/integration/soapy_bing/ads_spec.rb +0 -32
- data/spec/soapy_bing/ads/reports/campaign_performance_report_spec.rb +0 -42
- data/spec/soapy_bing/ads_spec.rb +0 -33
- data/spec/soapy_bing/helpers/class_name_spec.rb +0 -15
- data/spec/soapy_bing/soap/request/base_spec.rb +0 -55
- data/spec/soapy_bing/soap/request/poll_generate_report_request_spec.rb +0 -60
- data/spec/soapy_bing/soap/response/base_spec.rb +0 -13
- data/spec/soapy_bing/soap/response/get_bulk_download_status_response_spec.rb +0 -60
- data/spec/soapy_bing/soap/response/payload_spec.rb +0 -48
- data/spec/soapy_bing/soap/response/poll_generate_report_response_spec.rb +0 -26
- data/spec/soapy_bing/soap/response/report_status_spec.rb +0 -92
- data/spec/soapy_bing/soap/response/submit_generate_report_response_spec.rb +0 -20
- data/spec/soapy_bing/soap/template_renderer_spec.rb +0 -25
|
@@ -1,218 +0,0 @@
|
|
|
1
|
-
[
|
|
2
|
-
{
|
|
3
|
-
"i:type": "TextAd",
|
|
4
|
-
"DevicePreference": "0",
|
|
5
|
-
"EditorialStatus": "Active",
|
|
6
|
-
"FinalAppUrls": {
|
|
7
|
-
"i:nil": "true",
|
|
8
|
-
"xmlns:a": "http://schemas.datacontract.org/2004/07/Microsoft.AdCenter.Advertiser.CampaignManagement.Api.DataContracts.V10"
|
|
9
|
-
},
|
|
10
|
-
"FinalMobileUrls": {
|
|
11
|
-
"i:nil": "true",
|
|
12
|
-
"xmlns:a": "http://schemas.microsoft.com/2003/10/Serialization/Arrays"
|
|
13
|
-
},
|
|
14
|
-
"FinalUrls": {
|
|
15
|
-
"i:nil": "true",
|
|
16
|
-
"xmlns:a": "http://schemas.microsoft.com/2003/10/Serialization/Arrays"
|
|
17
|
-
},
|
|
18
|
-
"ForwardCompatibilityMap": {
|
|
19
|
-
"xmlns:a": "http://schemas.datacontract.org/2004/07/System.Collections.Generic"
|
|
20
|
-
},
|
|
21
|
-
"Id": "11792482357",
|
|
22
|
-
"Status": "Paused",
|
|
23
|
-
"TrackingUrlTemplate": {
|
|
24
|
-
"i:nil": "true"
|
|
25
|
-
},
|
|
26
|
-
"Type": "Text",
|
|
27
|
-
"UrlCustomParameters": {
|
|
28
|
-
"i:nil": "true",
|
|
29
|
-
"xmlns:a": "http://schemas.datacontract.org/2004/07/Microsoft.AdCenter.Advertiser.CampaignManagement.Api.DataContracts.V10"
|
|
30
|
-
},
|
|
31
|
-
"DestinationUrl": "a2g-secure.com/?E=oGFdRFUaQWMI%2f37zhgyAZQ2%2fmAc7YHJa&s1=AJ&s3={AdId}&s4={keyword}",
|
|
32
|
-
"DisplayUrl": "animaljam.com",
|
|
33
|
-
"Text": "Online playground for boys and girls who love animals. Register Now!",
|
|
34
|
-
"Title": "Animal Jam free to play"
|
|
35
|
-
},
|
|
36
|
-
{
|
|
37
|
-
"i:type": "TextAd",
|
|
38
|
-
"DevicePreference": "0",
|
|
39
|
-
"EditorialStatus": "Active",
|
|
40
|
-
"FinalAppUrls": {
|
|
41
|
-
"i:nil": "true",
|
|
42
|
-
"xmlns:a": "http://schemas.datacontract.org/2004/07/Microsoft.AdCenter.Advertiser.CampaignManagement.Api.DataContracts.V10"
|
|
43
|
-
},
|
|
44
|
-
"FinalMobileUrls": {
|
|
45
|
-
"i:nil": "true",
|
|
46
|
-
"xmlns:a": "http://schemas.microsoft.com/2003/10/Serialization/Arrays"
|
|
47
|
-
},
|
|
48
|
-
"FinalUrls": {
|
|
49
|
-
"i:nil": "true",
|
|
50
|
-
"xmlns:a": "http://schemas.microsoft.com/2003/10/Serialization/Arrays"
|
|
51
|
-
},
|
|
52
|
-
"ForwardCompatibilityMap": {
|
|
53
|
-
"xmlns:a": "http://schemas.datacontract.org/2004/07/System.Collections.Generic"
|
|
54
|
-
},
|
|
55
|
-
"Id": "11792482358",
|
|
56
|
-
"Status": "Active",
|
|
57
|
-
"TrackingUrlTemplate": {
|
|
58
|
-
"i:nil": "true"
|
|
59
|
-
},
|
|
60
|
-
"Type": "Text",
|
|
61
|
-
"UrlCustomParameters": {
|
|
62
|
-
"i:nil": "true",
|
|
63
|
-
"xmlns:a": "http://schemas.datacontract.org/2004/07/Microsoft.AdCenter.Advertiser.CampaignManagement.Api.DataContracts.V10"
|
|
64
|
-
},
|
|
65
|
-
"DestinationUrl": "a2g-secure.com/?E=oGFdRFUaQWMI%2f37zhgyAZQ2%2fmAc7YHJa&s1=AJ&s3={AdId}&s4={keyword}",
|
|
66
|
-
"DisplayUrl": "animaljam.com",
|
|
67
|
-
"Text": "Adopt pets, chat with friends, play games and more. Play for free now!",
|
|
68
|
-
"Title": "Play Wild in Animal Jam"
|
|
69
|
-
},
|
|
70
|
-
{
|
|
71
|
-
"i:type": "TextAd",
|
|
72
|
-
"DevicePreference": "0",
|
|
73
|
-
"EditorialStatus": "Active",
|
|
74
|
-
"FinalAppUrls": {
|
|
75
|
-
"i:nil": "true",
|
|
76
|
-
"xmlns:a": "http://schemas.datacontract.org/2004/07/Microsoft.AdCenter.Advertiser.CampaignManagement.Api.DataContracts.V10"
|
|
77
|
-
},
|
|
78
|
-
"FinalMobileUrls": {
|
|
79
|
-
"i:nil": "true",
|
|
80
|
-
"xmlns:a": "http://schemas.microsoft.com/2003/10/Serialization/Arrays"
|
|
81
|
-
},
|
|
82
|
-
"FinalUrls": {
|
|
83
|
-
"i:nil": "true",
|
|
84
|
-
"xmlns:a": "http://schemas.microsoft.com/2003/10/Serialization/Arrays"
|
|
85
|
-
},
|
|
86
|
-
"ForwardCompatibilityMap": {
|
|
87
|
-
"xmlns:a": "http://schemas.datacontract.org/2004/07/System.Collections.Generic"
|
|
88
|
-
},
|
|
89
|
-
"Id": "11792482359",
|
|
90
|
-
"Status": "Paused",
|
|
91
|
-
"TrackingUrlTemplate": {
|
|
92
|
-
"i:nil": "true"
|
|
93
|
-
},
|
|
94
|
-
"Type": "Text",
|
|
95
|
-
"UrlCustomParameters": {
|
|
96
|
-
"i:nil": "true",
|
|
97
|
-
"xmlns:a": "http://schemas.datacontract.org/2004/07/Microsoft.AdCenter.Advertiser.CampaignManagement.Api.DataContracts.V10"
|
|
98
|
-
},
|
|
99
|
-
"DestinationUrl": "a2g-secure.com/?E=oGFdRFUaQWMI%2f37zhgyAZQ2%2fmAc7YHJa&s1=AJ&s3={AdId}&s4={keyword}",
|
|
100
|
-
"DisplayUrl": "animaljam.com",
|
|
101
|
-
"Text": "Have fun with National Geographic's Animal Jam - play now for free!",
|
|
102
|
-
"Title": "Play Animal Jam Online"
|
|
103
|
-
},
|
|
104
|
-
{
|
|
105
|
-
"i:type": "TextAd",
|
|
106
|
-
"DevicePreference": "0",
|
|
107
|
-
"EditorialStatus": "Active",
|
|
108
|
-
"FinalAppUrls": {
|
|
109
|
-
"i:nil": "true",
|
|
110
|
-
"xmlns:a": "http://schemas.datacontract.org/2004/07/Microsoft.AdCenter.Advertiser.CampaignManagement.Api.DataContracts.V10"
|
|
111
|
-
},
|
|
112
|
-
"FinalMobileUrls": {
|
|
113
|
-
"i:nil": "true",
|
|
114
|
-
"xmlns:a": "http://schemas.microsoft.com/2003/10/Serialization/Arrays"
|
|
115
|
-
},
|
|
116
|
-
"FinalUrls": {
|
|
117
|
-
"i:nil": "true",
|
|
118
|
-
"xmlns:a": "http://schemas.microsoft.com/2003/10/Serialization/Arrays"
|
|
119
|
-
},
|
|
120
|
-
"ForwardCompatibilityMap": {
|
|
121
|
-
"xmlns:a": "http://schemas.datacontract.org/2004/07/System.Collections.Generic",
|
|
122
|
-
"KeyValuePairOfstringstring": {
|
|
123
|
-
"key": "NativePreference",
|
|
124
|
-
"value": "False"
|
|
125
|
-
}
|
|
126
|
-
},
|
|
127
|
-
"Id": "13055725676",
|
|
128
|
-
"Status": "Active",
|
|
129
|
-
"TrackingUrlTemplate": {
|
|
130
|
-
"i:nil": "true"
|
|
131
|
-
},
|
|
132
|
-
"Type": "Text",
|
|
133
|
-
"UrlCustomParameters": {
|
|
134
|
-
"i:nil": "true",
|
|
135
|
-
"xmlns:a": "http://schemas.datacontract.org/2004/07/Microsoft.AdCenter.Advertiser.CampaignManagement.Api.DataContracts.V10"
|
|
136
|
-
},
|
|
137
|
-
"DestinationUrl": "a2g-secure.com/?E=oGFdRFUaQWMI%2f37zhgyAZQ2%2fmAc7YHJa&s1=AJ&s3={AdId}&s4={keyword}",
|
|
138
|
-
"DisplayUrl": "AnimalJam.com",
|
|
139
|
-
"Text": "Adopt pets, chat with friends, play games and have fun. Play now!",
|
|
140
|
-
"Title": "Play Wild in Animal Jam"
|
|
141
|
-
},
|
|
142
|
-
{
|
|
143
|
-
"i:type": "TextAd",
|
|
144
|
-
"DevicePreference": "0",
|
|
145
|
-
"EditorialStatus": "Active",
|
|
146
|
-
"FinalAppUrls": {
|
|
147
|
-
"i:nil": "true",
|
|
148
|
-
"xmlns:a": "http://schemas.datacontract.org/2004/07/Microsoft.AdCenter.Advertiser.CampaignManagement.Api.DataContracts.V10"
|
|
149
|
-
},
|
|
150
|
-
"FinalMobileUrls": {
|
|
151
|
-
"i:nil": "true",
|
|
152
|
-
"xmlns:a": "http://schemas.microsoft.com/2003/10/Serialization/Arrays"
|
|
153
|
-
},
|
|
154
|
-
"FinalUrls": {
|
|
155
|
-
"i:nil": "true",
|
|
156
|
-
"xmlns:a": "http://schemas.microsoft.com/2003/10/Serialization/Arrays"
|
|
157
|
-
},
|
|
158
|
-
"ForwardCompatibilityMap": {
|
|
159
|
-
"xmlns:a": "http://schemas.datacontract.org/2004/07/System.Collections.Generic",
|
|
160
|
-
"KeyValuePairOfstringstring": {
|
|
161
|
-
"key": "NativePreference",
|
|
162
|
-
"value": "False"
|
|
163
|
-
}
|
|
164
|
-
},
|
|
165
|
-
"Id": "13089495292",
|
|
166
|
-
"Status": "Paused",
|
|
167
|
-
"TrackingUrlTemplate": {
|
|
168
|
-
"i:nil": "true"
|
|
169
|
-
},
|
|
170
|
-
"Type": "Text",
|
|
171
|
-
"UrlCustomParameters": {
|
|
172
|
-
"i:nil": "true",
|
|
173
|
-
"xmlns:a": "http://schemas.datacontract.org/2004/07/Microsoft.AdCenter.Advertiser.CampaignManagement.Api.DataContracts.V10"
|
|
174
|
-
},
|
|
175
|
-
"DestinationUrl": "a2g-secure.com/?E=oGFdRFUaQWMI%2f37zhgyAZQ2%2fmAc7YHJa&s1=AJ&s3={AdId}&s4={keyword}",
|
|
176
|
-
"DisplayUrl": "AnimalJam.com",
|
|
177
|
-
"Text": "Virtual pets, parties and more. Join the fun. Play Wild!",
|
|
178
|
-
"Title": "Play Wild in Animal Jam"
|
|
179
|
-
},
|
|
180
|
-
{
|
|
181
|
-
"i:type":"TextAd",
|
|
182
|
-
"DevicePreference":"0",
|
|
183
|
-
"EditorialStatus":"Active",
|
|
184
|
-
"FinalAppUrls":{
|
|
185
|
-
"i:nil":"true",
|
|
186
|
-
"xmlns:a":"http://schemas.datacontract.org/2004/07/Microsoft.AdCenter.Advertiser.CampaignManagement.Api.DataContracts.V10"
|
|
187
|
-
},
|
|
188
|
-
"FinalMobileUrls":{
|
|
189
|
-
"i:nil":"true",
|
|
190
|
-
"xmlns:a":"http://schemas.microsoft.com/2003/10/Serialization/Arrays"
|
|
191
|
-
},
|
|
192
|
-
"FinalUrls":{
|
|
193
|
-
"i:nil":"true",
|
|
194
|
-
"xmlns:a":"http://schemas.microsoft.com/2003/10/Serialization/Arrays"
|
|
195
|
-
},
|
|
196
|
-
"ForwardCompatibilityMap":{
|
|
197
|
-
"xmlns:a":"http://schemas.datacontract.org/2004/07/System.Collections.Generic",
|
|
198
|
-
"KeyValuePairOfstringstring":{
|
|
199
|
-
"key":"NativePreference",
|
|
200
|
-
"value":"False"
|
|
201
|
-
}
|
|
202
|
-
},
|
|
203
|
-
"Id":"13950954205",
|
|
204
|
-
"Status":"Active",
|
|
205
|
-
"TrackingUrlTemplate":{
|
|
206
|
-
"i:nil":"true"
|
|
207
|
-
},
|
|
208
|
-
"Type":"Text",
|
|
209
|
-
"UrlCustomParameters":{
|
|
210
|
-
"i:nil":"true",
|
|
211
|
-
"xmlns:a":"http://schemas.datacontract.org/2004/07/Microsoft.AdCenter.Advertiser.CampaignManagement.Api.DataContracts.V10"
|
|
212
|
-
},
|
|
213
|
-
"DestinationUrl":"a2g-secure.com/?E=oGFdRFUaQWMI%2f37zhgyAZQ2%2fmAc7YHJa&s1=AJ&s3={AdId}&s4={keyword}",
|
|
214
|
-
"DisplayUrl":"PlayWild.AnimalJam.com",
|
|
215
|
-
"Text":"Adopt pets, chat with friends, play games and more. Play for free now!",
|
|
216
|
-
"Title":"Play Wild in Animal Jam"
|
|
217
|
-
}
|
|
218
|
-
]
|
|
@@ -1,81 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"Age": {
|
|
3
|
-
"i:nil": "true"
|
|
4
|
-
},
|
|
5
|
-
"DayTime": {
|
|
6
|
-
"i:nil": "true"
|
|
7
|
-
},
|
|
8
|
-
"DeviceOS": {
|
|
9
|
-
"Bids": {
|
|
10
|
-
"DeviceOSTargetBid": [
|
|
11
|
-
{
|
|
12
|
-
"BidAdjustment": "0",
|
|
13
|
-
"DeviceName": "Computers",
|
|
14
|
-
"OSNames": {
|
|
15
|
-
"i:nil": "true",
|
|
16
|
-
"xmlns:a": "http://schemas.microsoft.com/2003/10/Serialization/Arrays"
|
|
17
|
-
}
|
|
18
|
-
},
|
|
19
|
-
{
|
|
20
|
-
"BidAdjustment": "-100",
|
|
21
|
-
"DeviceName": "Smartphones",
|
|
22
|
-
"OSNames": {
|
|
23
|
-
"i:nil": "true",
|
|
24
|
-
"xmlns:a": "http://schemas.microsoft.com/2003/10/Serialization/Arrays"
|
|
25
|
-
}
|
|
26
|
-
},
|
|
27
|
-
{
|
|
28
|
-
"BidAdjustment": "0",
|
|
29
|
-
"DeviceName": "Tablets",
|
|
30
|
-
"OSNames": {
|
|
31
|
-
"i:nil": "true",
|
|
32
|
-
"xmlns:a": "http://schemas.microsoft.com/2003/10/Serialization/Arrays"
|
|
33
|
-
}
|
|
34
|
-
}
|
|
35
|
-
]
|
|
36
|
-
}
|
|
37
|
-
},
|
|
38
|
-
"ForwardCompatibilityMap": {
|
|
39
|
-
"xmlns:a": "http://schemas.datacontract.org/2004/07/System.Collections.Generic"
|
|
40
|
-
},
|
|
41
|
-
"Gender": {
|
|
42
|
-
"i:nil": "true"
|
|
43
|
-
},
|
|
44
|
-
"Id": "462821758",
|
|
45
|
-
"IsLibraryTarget": "true",
|
|
46
|
-
"Location": {
|
|
47
|
-
"CityTarget": {
|
|
48
|
-
"i:nil": "true"
|
|
49
|
-
},
|
|
50
|
-
"CountryTarget": {
|
|
51
|
-
"Bids": {
|
|
52
|
-
"CountryTargetBid": [
|
|
53
|
-
{
|
|
54
|
-
"BidAdjustment": "0",
|
|
55
|
-
"CountryAndRegion": "AU",
|
|
56
|
-
"IsExcluded": "false"
|
|
57
|
-
},
|
|
58
|
-
{
|
|
59
|
-
"BidAdjustment": "0",
|
|
60
|
-
"CountryAndRegion": "US",
|
|
61
|
-
"IsExcluded": "true"
|
|
62
|
-
}
|
|
63
|
-
]
|
|
64
|
-
}
|
|
65
|
-
},
|
|
66
|
-
"IntentOption": "PeopleIn",
|
|
67
|
-
"MetroAreaTarget": {
|
|
68
|
-
"i:nil": "true"
|
|
69
|
-
},
|
|
70
|
-
"PostalCodeTarget": {
|
|
71
|
-
"i:nil": "true"
|
|
72
|
-
},
|
|
73
|
-
"RadiusTarget": {
|
|
74
|
-
"i:nil": "true"
|
|
75
|
-
},
|
|
76
|
-
"StateTarget": {
|
|
77
|
-
"i:nil": "true"
|
|
78
|
-
}
|
|
79
|
-
},
|
|
80
|
-
"Name": "targetgroup1"
|
|
81
|
-
}
|
|
@@ -1,37 +0,0 @@
|
|
|
1
|
-
"Report Name: MyReport"
|
|
2
|
-
"Report Time: 10/14/2015"
|
|
3
|
-
"Time Zone: Various"
|
|
4
|
-
"Last Completed Available Day: 11/16/2015 2:40:00 AM (GMT)"
|
|
5
|
-
"Last Completed Available Hour: 11/16/2015 2:40:00 AM (GMT)"
|
|
6
|
-
"Report Aggregation: Hour of day"
|
|
7
|
-
"Report Filter: "
|
|
8
|
-
"Potential Incomplete Data: true"
|
|
9
|
-
"Rows: 24"
|
|
10
|
-
|
|
11
|
-
"HourOfDay","Impressions","Clicks","Spend"
|
|
12
|
-
"0","3793","1599","72.65"
|
|
13
|
-
"1","3560","1429","65.38"
|
|
14
|
-
"2","3177","1275","57.92"
|
|
15
|
-
"3","2194","849","38.68"
|
|
16
|
-
"4","1393","531","24.14"
|
|
17
|
-
"5","765","247","11.07"
|
|
18
|
-
"6","393","141","6.31"
|
|
19
|
-
"7","152","55","2.46"
|
|
20
|
-
"8","86","25","1.12"
|
|
21
|
-
"9","16","6","0.27"
|
|
22
|
-
"10","6","3","0.13"
|
|
23
|
-
"11","6","2","0.09"
|
|
24
|
-
"12","36","18","0.80"
|
|
25
|
-
"13","115","58","2.58"
|
|
26
|
-
"14","754","332","14.89"
|
|
27
|
-
"15","934","434","19.63"
|
|
28
|
-
"16","1177","525","23.63"
|
|
29
|
-
"17","1127","528","23.80"
|
|
30
|
-
"18","1107","509","22.88"
|
|
31
|
-
"19","1281","615","27.77"
|
|
32
|
-
"20","1718","789","35.56"
|
|
33
|
-
"21","2472","1207","54.23"
|
|
34
|
-
"22","3660","1621","73.08"
|
|
35
|
-
"23","3843","1754","79.54"
|
|
36
|
-
|
|
37
|
-
"©2015 Microsoft Corporation. All rights reserved. "
|
|
@@ -1,146 +0,0 @@
|
|
|
1
|
-
[
|
|
2
|
-
{
|
|
3
|
-
"HourOfDay": "0",
|
|
4
|
-
"Impressions": "3793",
|
|
5
|
-
"Clicks": "1599",
|
|
6
|
-
"Spend": "72.65"
|
|
7
|
-
},
|
|
8
|
-
{
|
|
9
|
-
"HourOfDay": "1",
|
|
10
|
-
"Impressions": "3560",
|
|
11
|
-
"Clicks": "1429",
|
|
12
|
-
"Spend": "65.38"
|
|
13
|
-
},
|
|
14
|
-
{
|
|
15
|
-
"HourOfDay": "2",
|
|
16
|
-
"Impressions": "3177",
|
|
17
|
-
"Clicks": "1275",
|
|
18
|
-
"Spend": "57.92"
|
|
19
|
-
},
|
|
20
|
-
{
|
|
21
|
-
"HourOfDay": "3",
|
|
22
|
-
"Impressions": "2194",
|
|
23
|
-
"Clicks": "849",
|
|
24
|
-
"Spend": "38.68"
|
|
25
|
-
},
|
|
26
|
-
{
|
|
27
|
-
"HourOfDay": "4",
|
|
28
|
-
"Impressions": "1393",
|
|
29
|
-
"Clicks": "531",
|
|
30
|
-
"Spend": "24.14"
|
|
31
|
-
},
|
|
32
|
-
{
|
|
33
|
-
"HourOfDay": "5",
|
|
34
|
-
"Impressions": "765",
|
|
35
|
-
"Clicks": "247",
|
|
36
|
-
"Spend": "11.07"
|
|
37
|
-
},
|
|
38
|
-
{
|
|
39
|
-
"HourOfDay": "6",
|
|
40
|
-
"Impressions": "393",
|
|
41
|
-
"Clicks": "141",
|
|
42
|
-
"Spend": "6.31"
|
|
43
|
-
},
|
|
44
|
-
{
|
|
45
|
-
"HourOfDay": "7",
|
|
46
|
-
"Impressions": "152",
|
|
47
|
-
"Clicks": "55",
|
|
48
|
-
"Spend": "2.46"
|
|
49
|
-
},
|
|
50
|
-
{
|
|
51
|
-
"HourOfDay": "8",
|
|
52
|
-
"Impressions": "86",
|
|
53
|
-
"Clicks": "25",
|
|
54
|
-
"Spend": "1.12"
|
|
55
|
-
},
|
|
56
|
-
{
|
|
57
|
-
"HourOfDay": "9",
|
|
58
|
-
"Impressions": "16",
|
|
59
|
-
"Clicks": "6",
|
|
60
|
-
"Spend": "0.27"
|
|
61
|
-
},
|
|
62
|
-
{
|
|
63
|
-
"HourOfDay": "10",
|
|
64
|
-
"Impressions": "6",
|
|
65
|
-
"Clicks": "3",
|
|
66
|
-
"Spend": "0.13"
|
|
67
|
-
},
|
|
68
|
-
{
|
|
69
|
-
"HourOfDay": "11",
|
|
70
|
-
"Impressions": "6",
|
|
71
|
-
"Clicks": "2",
|
|
72
|
-
"Spend": "0.09"
|
|
73
|
-
},
|
|
74
|
-
{
|
|
75
|
-
"HourOfDay": "12",
|
|
76
|
-
"Impressions": "36",
|
|
77
|
-
"Clicks": "18",
|
|
78
|
-
"Spend": "0.80"
|
|
79
|
-
},
|
|
80
|
-
{
|
|
81
|
-
"HourOfDay": "13",
|
|
82
|
-
"Impressions": "115",
|
|
83
|
-
"Clicks": "58",
|
|
84
|
-
"Spend": "2.58"
|
|
85
|
-
},
|
|
86
|
-
{
|
|
87
|
-
"HourOfDay": "14",
|
|
88
|
-
"Impressions": "754",
|
|
89
|
-
"Clicks": "332",
|
|
90
|
-
"Spend": "14.89"
|
|
91
|
-
},
|
|
92
|
-
{
|
|
93
|
-
"HourOfDay": "15",
|
|
94
|
-
"Impressions": "934",
|
|
95
|
-
"Clicks": "434",
|
|
96
|
-
"Spend": "19.63"
|
|
97
|
-
},
|
|
98
|
-
{
|
|
99
|
-
"HourOfDay": "16",
|
|
100
|
-
"Impressions": "1177",
|
|
101
|
-
"Clicks": "525",
|
|
102
|
-
"Spend": "23.63"
|
|
103
|
-
},
|
|
104
|
-
{
|
|
105
|
-
"HourOfDay": "17",
|
|
106
|
-
"Impressions": "1127",
|
|
107
|
-
"Clicks": "528",
|
|
108
|
-
"Spend": "23.80"
|
|
109
|
-
},
|
|
110
|
-
{
|
|
111
|
-
"HourOfDay": "18",
|
|
112
|
-
"Impressions": "1107",
|
|
113
|
-
"Clicks": "509",
|
|
114
|
-
"Spend": "22.88"
|
|
115
|
-
},
|
|
116
|
-
{
|
|
117
|
-
"HourOfDay": "19",
|
|
118
|
-
"Impressions": "1281",
|
|
119
|
-
"Clicks": "615",
|
|
120
|
-
"Spend": "27.77"
|
|
121
|
-
},
|
|
122
|
-
{
|
|
123
|
-
"HourOfDay": "20",
|
|
124
|
-
"Impressions": "1718",
|
|
125
|
-
"Clicks": "789",
|
|
126
|
-
"Spend": "35.56"
|
|
127
|
-
},
|
|
128
|
-
{
|
|
129
|
-
"HourOfDay": "21",
|
|
130
|
-
"Impressions": "2472",
|
|
131
|
-
"Clicks": "1207",
|
|
132
|
-
"Spend": "54.23"
|
|
133
|
-
},
|
|
134
|
-
{
|
|
135
|
-
"HourOfDay": "22",
|
|
136
|
-
"Impressions": "3660",
|
|
137
|
-
"Clicks": "1621",
|
|
138
|
-
"Spend": "73.08"
|
|
139
|
-
},
|
|
140
|
-
{
|
|
141
|
-
"HourOfDay": "23",
|
|
142
|
-
"Impressions": "3843",
|
|
143
|
-
"Clicks": "1754",
|
|
144
|
-
"Spend": "79.54"
|
|
145
|
-
}
|
|
146
|
-
]
|