facebook_ads 0.1.11 → 0.1.12

Sign up to get free protection for your applications and to get access to all the features.
Files changed (95) hide show
  1. checksums.yaml +4 -4
  2. data/.approvals +0 -0
  3. data/.coveralls.yml +1 -0
  4. data/.rspec +2 -0
  5. data/.rubocop.yml +13 -1
  6. data/.rubocop_todo.yml +16 -0
  7. data/.travis.yml +3 -1
  8. data/CHANGELOG.md +5 -0
  9. data/Gemfile +10 -7
  10. data/Gemfile.lock +56 -19
  11. data/LICENSE.md +22 -0
  12. data/README.md +8 -0
  13. data/facebook_ads.gemspec +2 -2
  14. data/lib/facebook_ads/ad.rb +2 -2
  15. data/lib/facebook_ads/ad_account.rb +52 -19
  16. data/lib/facebook_ads/ad_audience.rb +1 -1
  17. data/lib/facebook_ads/ad_campaign.rb +47 -5
  18. data/lib/facebook_ads/ad_creative.rb +4 -4
  19. data/lib/facebook_ads/ad_exception.rb +7 -1
  20. data/lib/facebook_ads/ad_image.rb +6 -2
  21. data/lib/facebook_ads/ad_insight.rb +1 -1
  22. data/lib/facebook_ads/ad_product.rb +1 -1
  23. data/lib/facebook_ads/ad_product_catalog.rb +1 -1
  24. data/lib/facebook_ads/ad_product_feed.rb +1 -1
  25. data/lib/facebook_ads/ad_product_set.rb +1 -1
  26. data/lib/facebook_ads/ad_set.rb +5 -5
  27. data/lib/facebook_ads/ad_targeting.rb +3 -3
  28. data/lib/facebook_ads/base.rb +10 -9
  29. data/spec/facebook_ads/ad_account_spec.rb +93 -0
  30. data/spec/facebook_ads/ad_campaign_spec.rb +19 -0
  31. data/spec/facebook_ads/ad_creative_spec.rb +4 -0
  32. data/spec/facebook_ads/ad_image_spec.rb +4 -0
  33. data/spec/facebook_ads/ad_insight_spec.rb +4 -0
  34. data/spec/facebook_ads/ad_product_catalog_spec.rb +27 -0
  35. data/spec/facebook_ads/ad_product_feed_spec.rb +4 -0
  36. data/spec/facebook_ads/ad_product_set_spec.rb +4 -0
  37. data/spec/facebook_ads/ad_product_spec.rb +21 -0
  38. data/spec/facebook_ads/ad_set_spec.rb +47 -0
  39. data/spec/facebook_ads/ad_spec.rb +4 -0
  40. data/spec/facebook_ads/ad_targeting_spec.rb +4 -0
  41. data/spec/facebook_ads/facebook_ads_spec.rb +15 -0
  42. data/spec/fixtures/approvals/facebookads_adaccount/ad_campaigns/lists_campaigns.approved.json +15 -0
  43. data/spec/fixtures/approvals/facebookads_adaccount/ad_creatives/lists_creatives.approved.json +1047 -0
  44. data/spec/fixtures/approvals/facebookads_adaccount/ad_images/lists_images.approved.json +11 -0
  45. data/spec/fixtures/approvals/facebookads_adaccount/ad_sets/lists_ad_sets.approved.json +3 -0
  46. data/spec/fixtures/approvals/facebookads_adaccount/ads/lists_ads.approved.json +3 -0
  47. data/spec/fixtures/approvals/facebookads_adaccount/all/lists_all_accounts.approved.json +92 -0
  48. data/spec/fixtures/approvals/facebookads_adaccount/create_ad_campaign/creates_a_new_ad_campaign.approved.json +13 -0
  49. data/spec/fixtures/approvals/facebookads_adaccount/create_ad_images/creates_an_image.approved.json +11 -0
  50. data/spec/fixtures/approvals/facebookads_adaccount/find_by/finds_a_specific_account.approved.json +9 -0
  51. data/spec/fixtures/approvals/facebookads_adaccount/reach_estimate/estimates_the_reach_of_a_targeting_spec.approved.json +358 -0
  52. data/spec/fixtures/cassettes/FacebookAds_AdAccount/_ad_campaigns/lists_campaigns.yml +56 -0
  53. data/spec/fixtures/cassettes/FacebookAds_AdAccount/_ad_creatives/lists_creatives.yml +91 -0
  54. data/spec/fixtures/cassettes/FacebookAds_AdAccount/_ad_images/lists_images.yml +56 -0
  55. data/spec/fixtures/cassettes/FacebookAds_AdAccount/_ad_sets/lists_ad_sets.yml +56 -0
  56. data/spec/fixtures/cassettes/FacebookAds_AdAccount/_ads/lists_ads.yml +56 -0
  57. data/spec/fixtures/cassettes/FacebookAds_AdAccount/_all/lists_all_accounts.yml +58 -0
  58. data/spec/fixtures/cassettes/FacebookAds_AdAccount/_create_ad_campaign/creates_a_new_ad_campaign.yml +115 -0
  59. data/spec/fixtures/cassettes/FacebookAds_AdAccount/_create_ad_images/creates_an_image.yml +2865 -0
  60. data/spec/fixtures/cassettes/FacebookAds_AdAccount/_find_by/finds_a_specific_account.yml +58 -0
  61. data/spec/fixtures/cassettes/FacebookAds_AdAccount/_reach_estimate/estimates_the_reach_of_a_targeting_spec.yml +56 -0
  62. data/spec/fixtures/cassettes/FacebookAds_AdCampaign/_destroy/creates_a_new_ad_campaign.yml +164 -0
  63. data/spec/spec_helper.rb +7 -0
  64. data/spec/support/approvals.rb +10 -0
  65. data/spec/support/facebook_ads.rb +4 -0
  66. data/spec/support/rest_client.rb +13 -0
  67. data/spec/support/vcr.rb +16 -0
  68. metadata +47 -29
  69. data/test/ad_account_test.rb +0 -27
  70. data/test/ad_campaign_test.rb +0 -32
  71. data/test/ad_creative_test.rb +0 -7
  72. data/test/ad_image_test.rb +0 -27
  73. data/test/ad_insight_test.rb +0 -7
  74. data/test/ad_product_catalog_test.rb +0 -28
  75. data/test/ad_product_feed_test.rb +0 -7
  76. data/test/ad_product_set_test.rb +0 -7
  77. data/test/ad_product_test.rb +0 -22
  78. data/test/ad_set_test.rb +0 -48
  79. data/test/ad_targeting_test.rb +0 -7
  80. data/test/ad_test.rb +0 -7
  81. data/test/facebook_ads_test.rb +0 -8
  82. data/test/test_helper.rb +0 -64
  83. data/test/vcr_cassettes/AdAccountTest-test_all.yml +0 -70
  84. data/test/vcr_cassettes/AdAccountTest-test_applications.yml +0 -130
  85. data/test/vcr_cassettes/AdAccountTest-test_find_by.yml +0 -71
  86. data/test/vcr_cassettes/AdCampaignTest-test_create.yml +0 -295
  87. data/test/vcr_cassettes/AdCampaignTest-test_list.yml +0 -133
  88. data/test/vcr_cassettes/AdImageTest-test_create.yml +0 -2963
  89. data/test/vcr_cassettes/AdImageTest-test_list.yml +0 -137
  90. data/test/vcr_cassettes/AdProductCatalogTest-test_all.yml +0 -60
  91. data/test/vcr_cassettes/AdProductCatalogTest-test_create.yml +0 -256
  92. data/test/vcr_cassettes/AdProductTest-test_list.yml +0 -130
  93. data/test/vcr_cassettes/AdSetTest-test_create.yml +0 -189
  94. data/test/vcr_cassettes/AdSetTest-test_destroy.yml +0 -124
  95. data/test/vcr_cassettes/AdSetTest-test_update.yml +0 -134
@@ -0,0 +1,21 @@
1
+ require 'spec_helper'
2
+
3
+ describe FacebookAds::AdProduct do
4
+ # def test_list
5
+ # vcr do
6
+ # catalog = FacebookAds::AdProductCatalog.find_by(name: 'Test')
7
+ # products = catalog.ad_products
8
+ # product = products.first
9
+ # assert_equal '1489112071104048', product.id
10
+ # assert_equal 'retro-ruby-earrings', product.retailer_id
11
+ # assert_equal 'Precious Retro .925 Sterling Silver Artificial Ruby Earrings', product.name
12
+ # assert_equal '$5 shipping - at your doorstep within 25-27 business days.', product.description
13
+ # assert_equal 'Adoration-Precious', product.brand
14
+ # assert_equal 'Jewelry | Earrings', product.category
15
+ # assert_equal 'USD', product.currency
16
+ # assert_equal '$156.00', product.price
17
+ # assert_equal 'https://external.xx.fbcdn.net/safe_image.php?d=AQALnOfu1mhkpb4T&url=https%3A%2F%2Fd38eepresuu519.cloudfront.net%2F12c85243d743ac3cb21b71c34192b252%2Flarge.jpg&cfs=1&_nc_hash=AQBlxlDCq59tO6sE', product.image_url
18
+ # assert_equal 'https://tophatter.com/lots/23275728', product.url
19
+ # end
20
+ # end
21
+ end
@@ -0,0 +1,47 @@
1
+ require 'spec_helper'
2
+
3
+ describe FacebookAds::AdSet do
4
+ # def test_create
5
+ # vcr do
6
+ # ad_campaign = FacebookAds::AdCampaign.find('6069436026057')
7
+ # ad_set = ad_campaign.create_ad_set(
8
+ # name: 'Test',
9
+ # promoted_object: {
10
+ # pixel_id: '1472889202927380',
11
+ # custom_event_type: 'PURCHASE'
12
+ # },
13
+ # targeting: {
14
+ # age_max: 65,
15
+ # age_min: 18,
16
+ # app_install_state: 'not_installed',
17
+ # excluded_custom_audiences: [{ "name"=>"All-Users-2016-07-28", "id"=>"6068994792257" }],
18
+ # genders: [2],
19
+ # geo_locations: { countries: %w(US), location_types: %w(home recent) },
20
+ # locales: [24, 6],
21
+ # publisher_platforms: %w(facebook instagram audience_network),
22
+ # device_platforms: %w(desktop),
23
+ # facebook_positions: %w(feed right_hand_column)
24
+ # },
25
+ # daily_budget: 1000,
26
+ # optimization_goal: 'OFFSITE_CONVERSIONS'
27
+ # )
28
+ # assert_equal '6081945233457', ad_set.id
29
+ # assert_equal '1000', ad_set.daily_budget
30
+ # assert_equal 'OFFSITE_CONVERSIONS', ad_set.optimization_goal
31
+ # end
32
+ # end
33
+ #
34
+ # def test_update
35
+ # vcr do
36
+ # ad_set = FacebookAds::AdSet.find('6078462927057')
37
+ # assert ad_set.update(daily_budget: 149900)
38
+ # end
39
+ # end
40
+ #
41
+ # def test_destroy
42
+ # vcr do
43
+ # ad_set = FacebookAds::AdSet.find('6081945233457')
44
+ # assert ad_set.destroy
45
+ # end
46
+ # end
47
+ end
@@ -0,0 +1,4 @@
1
+ require 'spec_helper'
2
+
3
+ describe FacebookAds::Ad do
4
+ end
@@ -0,0 +1,4 @@
1
+ require 'spec_helper'
2
+
3
+ describe FacebookAds::AdTargeting do
4
+ end
@@ -0,0 +1,15 @@
1
+ require 'spec_helper'
2
+
3
+ # rspec spec/facebook_ads/facebook_ads_spec.rb
4
+ describe FacebookAds do
5
+ describe '#base_uri' do
6
+ it 'is currency v2.8' do
7
+ expect(FacebookAds.base_uri.include?('2.8')).to be_truthy
8
+ end
9
+
10
+ it 'can be set to v2.9' do
11
+ FacebookAds.base_uri = 'https://graph.facebook.com/v2.9'
12
+ expect(FacebookAds.base_uri.include?('2.9')).to be_truthy
13
+ end
14
+ end
15
+ end
@@ -0,0 +1,15 @@
1
+ [
2
+ {
3
+ "id": "<object_id>",
4
+ "account_id": "<object_id>",
5
+ "buying_type": "AUCTION",
6
+ "can_use_spend_cap": true,
7
+ "configured_status": "ACTIVE",
8
+ "created_time": "<time>",
9
+ "effective_status": "ACTIVE",
10
+ "name": "Test",
11
+ "objective": "MOBILE_APP_INSTALLS",
12
+ "start_time": "<time>",
13
+ "updated_time": "<time>"
14
+ }
15
+ ]
@@ -0,0 +1,1047 @@
1
+ [
2
+ {
3
+ "id": "<object_id>",
4
+ "name": "Ad from a Page post #6,047,307,246,042",
5
+ "object_story_spec": {
6
+ "page_id": "300664329976860",
7
+ "instagram_actor_id": "1225641534119785",
8
+ "link_data": {
9
+ "link": "http://play.google.com/store/apps/details?id=com.tophatter",
10
+ "message": "Tophatter hosts the world's most exciting and entertaining live auctions feature",
11
+ "call_to_action": {
12
+ "type": "INSTALL_MOBILE_APP",
13
+ "value": {
14
+ "application": "295802707128640",
15
+ "link": "http://play.google.com/store/apps/details?id=com.tophatter",
16
+ "link_title": "Tophatter"
17
+ }
18
+ },
19
+ "child_attachments": [
20
+ {
21
+ "link": "http://play.google.com/store/apps/details?id=com.tophatter",
22
+ "name": "Tophatter",
23
+ "call_to_action": {
24
+ "type": "INSTALL_MOBILE_APP",
25
+ "value": {
26
+ "application": "295802707128640",
27
+ "link": "http://play.google.com/store/apps/details?id=com.tophatter",
28
+ "link_title": "Tophatter"
29
+ }
30
+ }
31
+ },
32
+ {
33
+ "link": "http://play.google.com/store/apps/details?id=com.tophatter",
34
+ "call_to_action": {
35
+ "type": "INSTALL_MOBILE_APP",
36
+ "value": {
37
+ "application": "295802707128640",
38
+ "link": "http://play.google.com/store/apps/details?id=com.tophatter"
39
+ }
40
+ }
41
+ },
42
+ {
43
+ "link": "http://play.google.com/store/apps/details?id=com.tophatter",
44
+ "call_to_action": {
45
+ "type": "INSTALL_MOBILE_APP",
46
+ "value": {
47
+ "application": "295802707128640",
48
+ "link": "http://play.google.com/store/apps/details?id=com.tophatter"
49
+ }
50
+ }
51
+ }
52
+ ],
53
+ "multi_share_end_card": true,
54
+ "multi_share_optimized": true
55
+ }
56
+ },
57
+ "object_type": "INVALID",
58
+ "thumbnail_url": "https://external.xx.fbcdn.net/safe_image.php?d=AQBUpgXveulYjAj7&w=64&h=64&url=https%3A%2F%2Fscontent.xx.fbcdn.net%2Fv%2Ft1.0-9%2F13645144_1096106237099328_9186797913597492566_n.png%3Foh%3Dda1ed4a885401f0e7477cdab5ac334f9%26oe%3D59796C5C&cfs=1&_nc_hash=AQBLX4jev8NGecY5",
59
+ "run_status": "ACTIVE"
60
+ },
61
+ {
62
+ "id": "<object_id>",
63
+ "name": "Ad from a Page post #6,047,307,243,042",
64
+ "object_story_spec": {
65
+ "page_id": "300664329976860",
66
+ "link_data": {
67
+ "link": "http://play.google.com/store/apps/details?id=com.tophatter",
68
+ "message": "Tophatter hosts the world's most exciting and entertaining live auctions feature",
69
+ "call_to_action": {
70
+ "type": "INSTALL_MOBILE_APP",
71
+ "value": {
72
+ "application": "295802707128640",
73
+ "link": "http://play.google.com/store/apps/details?id=com.tophatter",
74
+ "link_title": "Tophatter"
75
+ }
76
+ },
77
+ "child_attachments": [
78
+ {
79
+ "link": "http://play.google.com/store/apps/details?id=com.tophatter",
80
+ "name": "Tophatter",
81
+ "call_to_action": {
82
+ "type": "INSTALL_MOBILE_APP",
83
+ "value": {
84
+ "application": "295802707128640",
85
+ "link": "http://play.google.com/store/apps/details?id=com.tophatter",
86
+ "link_title": "Tophatter"
87
+ }
88
+ }
89
+ },
90
+ {
91
+ "link": "http://play.google.com/store/apps/details?id=com.tophatter",
92
+ "call_to_action": {
93
+ "type": "INSTALL_MOBILE_APP",
94
+ "value": {
95
+ "application": "295802707128640",
96
+ "link": "http://play.google.com/store/apps/details?id=com.tophatter"
97
+ }
98
+ }
99
+ },
100
+ {
101
+ "link": "http://play.google.com/store/apps/details?id=com.tophatter",
102
+ "call_to_action": {
103
+ "type": "INSTALL_MOBILE_APP",
104
+ "value": {
105
+ "application": "295802707128640",
106
+ "link": "http://play.google.com/store/apps/details?id=com.tophatter"
107
+ }
108
+ }
109
+ }
110
+ ],
111
+ "multi_share_end_card": true,
112
+ "multi_share_optimized": true
113
+ }
114
+ },
115
+ "object_type": "INVALID",
116
+ "thumbnail_url": "https://external.xx.fbcdn.net/safe_image.php?w=64&h=64&url=https%3A%2F%2Fscontent.xx.fbcdn.net%2Fv%2Ft1.0-9%2F13645144_1096106237099328_9186797913597492566_n.png%3Foh%3Dda1ed4a885401f0e7477cdab5ac334f9%26oe%3D59796C5C&cfs=1&_nc_hash=AQCIPomShqFYoi4N",
117
+ "run_status": "ACTIVE"
118
+ },
119
+ {
120
+ "id": "<object_id>",
121
+ "name": "Ad from a Page post #6,037,591,532,042",
122
+ "object_story_spec": {
123
+ "page_id": "300664329976860",
124
+ "link_data": {
125
+ "link": "https://itunes.apple.com/app/id619460348",
126
+ "message": "Foo bar baz.",
127
+ "call_to_action": {
128
+ "type": "INSTALL_MOBILE_APP",
129
+ "value": {
130
+ "application": "295802707128640",
131
+ "link": "https://itunes.apple.com/app/id619460348",
132
+ "link_title": "Tophatter"
133
+ }
134
+ },
135
+ "child_attachments": [
136
+ {
137
+ "link": "https://itunes.apple.com/app/id619460348",
138
+ "name": "Tophatter",
139
+ "call_to_action": {
140
+ "type": "INSTALL_MOBILE_APP",
141
+ "value": {
142
+ "application": "295802707128640",
143
+ "link": "https://itunes.apple.com/app/id619460348",
144
+ "link_title": "Tophatter"
145
+ }
146
+ }
147
+ },
148
+ {
149
+ "link": "https://itunes.apple.com/app/id619460348",
150
+ "call_to_action": {
151
+ "type": "INSTALL_MOBILE_APP",
152
+ "value": {
153
+ "application": "295802707128640",
154
+ "link": "https://itunes.apple.com/app/id619460348"
155
+ }
156
+ }
157
+ },
158
+ {
159
+ "link": "https://itunes.apple.com/app/id619460348",
160
+ "call_to_action": {
161
+ "type": "INSTALL_MOBILE_APP",
162
+ "value": {
163
+ "application": "295802707128640",
164
+ "link": "https://itunes.apple.com/app/id619460348"
165
+ }
166
+ }
167
+ }
168
+ ],
169
+ "multi_share_end_card": true,
170
+ "multi_share_optimized": true
171
+ }
172
+ },
173
+ "object_type": "INVALID",
174
+ "thumbnail_url": "https://external.xx.fbcdn.net/safe_image.php?d=AQBUpgXveulYjAj7&w=64&h=64&url=https%3A%2F%2Fscontent.xx.fbcdn.net%2Fv%2Ft1.0-9%2F13645144_1096106237099328_9186797913597492566_n.png%3Foh%3Dda1ed4a885401f0e7477cdab5ac334f9%26oe%3D59796C5C&cfs=1&_nc_hash=AQBLX4jev8NGecY5",
175
+ "run_status": "ACTIVE"
176
+ },
177
+ {
178
+ "id": "<object_id>",
179
+ "name": "Ad from a Page post #6,037,591,520,042",
180
+ "object_story_spec": {
181
+ "page_id": "300664329976860",
182
+ "link_data": {
183
+ "link": "https://itunes.apple.com/app/id619460348",
184
+ "message": "Foo bar baz.",
185
+ "call_to_action": {
186
+ "type": "INSTALL_MOBILE_APP",
187
+ "value": {
188
+ "application": "295802707128640",
189
+ "link": "https://itunes.apple.com/app/id619460348",
190
+ "link_title": "Tophatter"
191
+ }
192
+ },
193
+ "child_attachments": [
194
+ {
195
+ "link": "https://itunes.apple.com/app/id619460348",
196
+ "name": "Tophatter",
197
+ "call_to_action": {
198
+ "type": "INSTALL_MOBILE_APP",
199
+ "value": {
200
+ "application": "295802707128640",
201
+ "link": "https://itunes.apple.com/app/id619460348",
202
+ "link_title": "Tophatter"
203
+ }
204
+ }
205
+ },
206
+ {
207
+ "link": "https://itunes.apple.com/app/id619460348",
208
+ "call_to_action": {
209
+ "type": "INSTALL_MOBILE_APP",
210
+ "value": {
211
+ "application": "295802707128640",
212
+ "link": "https://itunes.apple.com/app/id619460348"
213
+ }
214
+ }
215
+ },
216
+ {
217
+ "link": "https://itunes.apple.com/app/id619460348",
218
+ "call_to_action": {
219
+ "type": "INSTALL_MOBILE_APP",
220
+ "value": {
221
+ "application": "295802707128640",
222
+ "link": "https://itunes.apple.com/app/id619460348"
223
+ }
224
+ }
225
+ }
226
+ ],
227
+ "multi_share_end_card": true,
228
+ "multi_share_optimized": true
229
+ }
230
+ },
231
+ "object_type": "SHARE",
232
+ "thumbnail_url": "https://external.xx.fbcdn.net/safe_image.php?d=AQAn_wfmDXSKOWgL&w=64&h=64&url=http%3A%2F%2Fis2.mzstatic.com%2Fimage%2Fthumb%2FPurple7%2Fv4%2Fb2%2F37%2Fae%2Fb237ae8d-2b39-df92-b853-a7d55fb91200%2Fsource%2F1200x630bf.jpg&cfs=1&_nc_hash=AQCY1tBOdqunbEAD",
233
+ "run_status": "ACTIVE"
234
+ },
235
+ {
236
+ "id": "<object_id>",
237
+ "name": "Ad from a Page post #6,037,591,496,242",
238
+ "object_story_spec": {
239
+ "page_id": "300664329976860",
240
+ "link_data": {
241
+ "link": "https://itunes.apple.com/app/id619460348",
242
+ "message": "Foo bar baz.",
243
+ "call_to_action": {
244
+ "type": "INSTALL_MOBILE_APP",
245
+ "value": {
246
+ "application": "295802707128640",
247
+ "link": "https://itunes.apple.com/app/id619460348",
248
+ "link_title": "Tophatter"
249
+ }
250
+ },
251
+ "child_attachments": [
252
+ {
253
+ "link": "https://itunes.apple.com/app/id619460348",
254
+ "name": "Tophatter",
255
+ "call_to_action": {
256
+ "type": "INSTALL_MOBILE_APP",
257
+ "value": {
258
+ "application": "295802707128640",
259
+ "link": "https://itunes.apple.com/app/id619460348",
260
+ "link_title": "Tophatter"
261
+ }
262
+ }
263
+ },
264
+ {
265
+ "link": "https://itunes.apple.com/app/id619460348",
266
+ "call_to_action": {
267
+ "type": "INSTALL_MOBILE_APP",
268
+ "value": {
269
+ "application": "295802707128640",
270
+ "link": "https://itunes.apple.com/app/id619460348"
271
+ }
272
+ }
273
+ },
274
+ {
275
+ "link": "https://itunes.apple.com/app/id619460348",
276
+ "call_to_action": {
277
+ "type": "INSTALL_MOBILE_APP",
278
+ "value": {
279
+ "application": "295802707128640",
280
+ "link": "https://itunes.apple.com/app/id619460348"
281
+ }
282
+ }
283
+ }
284
+ ],
285
+ "multi_share_end_card": true,
286
+ "multi_share_optimized": true
287
+ }
288
+ },
289
+ "object_type": "INVALID",
290
+ "thumbnail_url": "https://external.xx.fbcdn.net/safe_image.php?w=64&h=64&url=https%3A%2F%2Fscontent.xx.fbcdn.net%2Fv%2Ft1.0-9%2F13645144_1096106237099328_9186797913597492566_n.png%3Foh%3Dda1ed4a885401f0e7477cdab5ac334f9%26oe%3D59796C5C&cfs=1&_nc_hash=AQCIPomShqFYoi4N",
291
+ "run_status": "ACTIVE"
292
+ },
293
+ {
294
+ "id": "<object_id>",
295
+ "name": "Ad from a Page post #6,037,591,490,242",
296
+ "object_story_spec": {
297
+ "page_id": "300664329976860",
298
+ "link_data": {
299
+ "link": "https://itunes.apple.com/app/id619460348",
300
+ "message": "Foo bar baz.",
301
+ "call_to_action": {
302
+ "type": "INSTALL_MOBILE_APP",
303
+ "value": {
304
+ "application": "295802707128640",
305
+ "link": "https://itunes.apple.com/app/id619460348",
306
+ "link_title": "Tophatter"
307
+ }
308
+ },
309
+ "child_attachments": [
310
+ {
311
+ "link": "https://itunes.apple.com/app/id619460348",
312
+ "name": "Tophatter",
313
+ "call_to_action": {
314
+ "type": "INSTALL_MOBILE_APP",
315
+ "value": {
316
+ "application": "295802707128640",
317
+ "link": "https://itunes.apple.com/app/id619460348",
318
+ "link_title": "Tophatter"
319
+ }
320
+ }
321
+ },
322
+ {
323
+ "link": "https://itunes.apple.com/app/id619460348",
324
+ "call_to_action": {
325
+ "type": "INSTALL_MOBILE_APP",
326
+ "value": {
327
+ "application": "295802707128640",
328
+ "link": "https://itunes.apple.com/app/id619460348"
329
+ }
330
+ }
331
+ },
332
+ {
333
+ "link": "https://itunes.apple.com/app/id619460348",
334
+ "call_to_action": {
335
+ "type": "INSTALL_MOBILE_APP",
336
+ "value": {
337
+ "application": "295802707128640",
338
+ "link": "https://itunes.apple.com/app/id619460348"
339
+ }
340
+ }
341
+ }
342
+ ],
343
+ "multi_share_end_card": true,
344
+ "multi_share_optimized": true
345
+ }
346
+ },
347
+ "object_type": "INVALID",
348
+ "thumbnail_url": "https://external.xx.fbcdn.net/safe_image.php?d=AQBUpgXveulYjAj7&w=64&h=64&url=https%3A%2F%2Fscontent.xx.fbcdn.net%2Fv%2Ft1.0-9%2F13645144_1096106237099328_9186797913597492566_n.png%3Foh%3Dda1ed4a885401f0e7477cdab5ac334f9%26oe%3D59796C5C&cfs=1&_nc_hash=AQBLX4jev8NGecY5",
349
+ "run_status": "ACTIVE"
350
+ },
351
+ {
352
+ "id": "<object_id>",
353
+ "name": "Ad from a Page post #6,037,591,488,442",
354
+ "object_story_spec": {
355
+ "page_id": "300664329976860",
356
+ "link_data": {
357
+ "link": "https://itunes.apple.com/app/id619460348",
358
+ "message": "Test test test.",
359
+ "call_to_action": {
360
+ "type": "INSTALL_MOBILE_APP",
361
+ "value": {
362
+ "application": "295802707128640",
363
+ "link": "https://itunes.apple.com/app/id619460348",
364
+ "link_title": "Tophatter"
365
+ }
366
+ },
367
+ "child_attachments": [
368
+ {
369
+ "link": "https://itunes.apple.com/app/id619460348",
370
+ "name": "Tophatter",
371
+ "call_to_action": {
372
+ "type": "INSTALL_MOBILE_APP",
373
+ "value": {
374
+ "application": "295802707128640",
375
+ "link": "https://itunes.apple.com/app/id619460348",
376
+ "link_title": "Tophatter"
377
+ }
378
+ }
379
+ },
380
+ {
381
+ "link": "https://itunes.apple.com/app/id619460348",
382
+ "call_to_action": {
383
+ "type": "INSTALL_MOBILE_APP",
384
+ "value": {
385
+ "application": "295802707128640",
386
+ "link": "https://itunes.apple.com/app/id619460348"
387
+ }
388
+ }
389
+ },
390
+ {
391
+ "link": "https://itunes.apple.com/app/id619460348",
392
+ "call_to_action": {
393
+ "type": "INSTALL_MOBILE_APP",
394
+ "value": {
395
+ "application": "295802707128640",
396
+ "link": "https://itunes.apple.com/app/id619460348"
397
+ }
398
+ }
399
+ }
400
+ ],
401
+ "multi_share_end_card": true,
402
+ "multi_share_optimized": true
403
+ }
404
+ },
405
+ "object_type": "INVALID",
406
+ "thumbnail_url": "https://external.xx.fbcdn.net/safe_image.php?d=AQBUpgXveulYjAj7&w=64&h=64&url=https%3A%2F%2Fscontent.xx.fbcdn.net%2Fv%2Ft1.0-9%2F13645144_1096106237099328_9186797913597492566_n.png%3Foh%3Dda1ed4a885401f0e7477cdab5ac334f9%26oe%3D59796C5C&cfs=1&_nc_hash=AQBLX4jev8NGecY5",
407
+ "run_status": "ACTIVE"
408
+ },
409
+ {
410
+ "id": "<object_id>",
411
+ "name": "Ad from a Page post #6,037,591,381,642",
412
+ "object_story_spec": {
413
+ "page_id": "300664329976860",
414
+ "link_data": {
415
+ "link": "https://itunes.apple.com/app/id619460348",
416
+ "message": "Tophatter hosts the world's most exciting and entertaining live auctions feature",
417
+ "call_to_action": {
418
+ "type": "INSTALL_MOBILE_APP",
419
+ "value": {
420
+ "application": "295802707128640",
421
+ "link": "https://itunes.apple.com/app/id619460348",
422
+ "link_title": "Tophatter"
423
+ }
424
+ },
425
+ "child_attachments": [
426
+ {
427
+ "link": "https://itunes.apple.com/app/id619460348",
428
+ "name": "Tophatter",
429
+ "call_to_action": {
430
+ "type": "INSTALL_MOBILE_APP",
431
+ "value": {
432
+ "application": "295802707128640",
433
+ "link": "https://itunes.apple.com/app/id619460348",
434
+ "link_title": "Tophatter"
435
+ }
436
+ }
437
+ },
438
+ {
439
+ "link": "https://itunes.apple.com/app/id619460348",
440
+ "call_to_action": {
441
+ "type": "INSTALL_MOBILE_APP",
442
+ "value": {
443
+ "application": "295802707128640",
444
+ "link": "https://itunes.apple.com/app/id619460348"
445
+ }
446
+ }
447
+ },
448
+ {
449
+ "link": "https://itunes.apple.com/app/id619460348",
450
+ "call_to_action": {
451
+ "type": "INSTALL_MOBILE_APP",
452
+ "value": {
453
+ "application": "295802707128640",
454
+ "link": "https://itunes.apple.com/app/id619460348"
455
+ }
456
+ }
457
+ }
458
+ ],
459
+ "multi_share_end_card": true,
460
+ "multi_share_optimized": true
461
+ }
462
+ },
463
+ "object_type": "INVALID",
464
+ "thumbnail_url": "https://external.xx.fbcdn.net/safe_image.php?d=AQBUpgXveulYjAj7&w=64&h=64&url=https%3A%2F%2Fscontent.xx.fbcdn.net%2Fv%2Ft1.0-9%2F13645144_1096106237099328_9186797913597492566_n.png%3Foh%3Dda1ed4a885401f0e7477cdab5ac334f9%26oe%3D59796C5C&cfs=1&_nc_hash=AQBLX4jev8NGecY5",
465
+ "run_status": "ACTIVE"
466
+ },
467
+ {
468
+ "id": "<object_id>",
469
+ "name": "Ad from a Page post #6,037,591,371,842",
470
+ "object_story_spec": {
471
+ "page_id": "300664329976860",
472
+ "link_data": {
473
+ "link": "https://itunes.apple.com/app/id619460348",
474
+ "message": "Tophatter hosts the world's most exciting and entertaining live auctions feature",
475
+ "call_to_action": {
476
+ "type": "INSTALL_MOBILE_APP",
477
+ "value": {
478
+ "application": "295802707128640",
479
+ "link": "https://itunes.apple.com/app/id619460348",
480
+ "link_title": "Tophatter"
481
+ }
482
+ },
483
+ "child_attachments": [
484
+ {
485
+ "link": "https://itunes.apple.com/app/id619460348",
486
+ "name": "Tophatter",
487
+ "call_to_action": {
488
+ "type": "INSTALL_MOBILE_APP",
489
+ "value": {
490
+ "application": "295802707128640",
491
+ "link": "https://itunes.apple.com/app/id619460348",
492
+ "link_title": "Tophatter"
493
+ }
494
+ }
495
+ },
496
+ {
497
+ "link": "https://itunes.apple.com/app/id619460348",
498
+ "call_to_action": {
499
+ "type": "INSTALL_MOBILE_APP",
500
+ "value": {
501
+ "application": "295802707128640",
502
+ "link": "https://itunes.apple.com/app/id619460348"
503
+ }
504
+ }
505
+ },
506
+ {
507
+ "link": "https://itunes.apple.com/app/id619460348",
508
+ "call_to_action": {
509
+ "type": "INSTALL_MOBILE_APP",
510
+ "value": {
511
+ "application": "295802707128640",
512
+ "link": "https://itunes.apple.com/app/id619460348"
513
+ }
514
+ }
515
+ }
516
+ ],
517
+ "multi_share_end_card": true,
518
+ "multi_share_optimized": true
519
+ }
520
+ },
521
+ "object_type": "INVALID",
522
+ "thumbnail_url": "https://external.xx.fbcdn.net/safe_image.php?d=AQBUpgXveulYjAj7&w=64&h=64&url=https%3A%2F%2Fscontent.xx.fbcdn.net%2Fv%2Ft1.0-9%2F13645144_1096106237099328_9186797913597492566_n.png%3Foh%3Dda1ed4a885401f0e7477cdab5ac334f9%26oe%3D59796C5C&cfs=1&_nc_hash=AQBLX4jev8NGecY5",
523
+ "run_status": "ACTIVE"
524
+ },
525
+ {
526
+ "id": "<object_id>",
527
+ "name": "Ad from a Page post #6,037,591,366,642",
528
+ "object_story_spec": {
529
+ "page_id": "300664329976860",
530
+ "link_data": {
531
+ "link": "https://itunes.apple.com/app/id619460348",
532
+ "message": "Tophatter hosts the world's most exciting and entertaining live auctions feature",
533
+ "call_to_action": {
534
+ "type": "INSTALL_MOBILE_APP",
535
+ "value": {
536
+ "application": "295802707128640",
537
+ "link": "https://itunes.apple.com/app/id619460348",
538
+ "link_title": "Tophatter"
539
+ }
540
+ },
541
+ "child_attachments": [
542
+ {
543
+ "link": "https://itunes.apple.com/app/id619460348",
544
+ "name": "Tophatter",
545
+ "call_to_action": {
546
+ "type": "INSTALL_MOBILE_APP",
547
+ "value": {
548
+ "application": "295802707128640",
549
+ "link": "https://itunes.apple.com/app/id619460348",
550
+ "link_title": "Tophatter"
551
+ }
552
+ }
553
+ },
554
+ {
555
+ "link": "https://itunes.apple.com/app/id619460348",
556
+ "call_to_action": {
557
+ "type": "INSTALL_MOBILE_APP",
558
+ "value": {
559
+ "application": "295802707128640",
560
+ "link": "https://itunes.apple.com/app/id619460348"
561
+ }
562
+ }
563
+ },
564
+ {
565
+ "link": "https://itunes.apple.com/app/id619460348",
566
+ "call_to_action": {
567
+ "type": "INSTALL_MOBILE_APP",
568
+ "value": {
569
+ "application": "295802707128640",
570
+ "link": "https://itunes.apple.com/app/id619460348"
571
+ }
572
+ }
573
+ }
574
+ ],
575
+ "multi_share_end_card": true,
576
+ "multi_share_optimized": true
577
+ }
578
+ },
579
+ "object_type": "INVALID",
580
+ "thumbnail_url": "https://external.xx.fbcdn.net/safe_image.php?w=64&h=64&url=https%3A%2F%2Fscontent.xx.fbcdn.net%2Fv%2Ft1.0-9%2F13645144_1096106237099328_9186797913597492566_n.png%3Foh%3Dda1ed4a885401f0e7477cdab5ac334f9%26oe%3D59796C5C&cfs=1&_nc_hash=AQCIPomShqFYoi4N",
581
+ "run_status": "ACTIVE"
582
+ },
583
+ {
584
+ "id": "<object_id>",
585
+ "name": "Ad from a Page post #6,037,591,365,642",
586
+ "object_story_spec": {
587
+ "page_id": "300664329976860",
588
+ "link_data": {
589
+ "link": "https://itunes.apple.com/app/id619460348",
590
+ "message": "Tophatter hosts the world's most exciting and entertaining live auctions feature",
591
+ "call_to_action": {
592
+ "type": "INSTALL_MOBILE_APP",
593
+ "value": {
594
+ "application": "295802707128640",
595
+ "link": "https://itunes.apple.com/app/id619460348",
596
+ "link_title": "Tophatter"
597
+ }
598
+ },
599
+ "child_attachments": [
600
+ {
601
+ "link": "https://itunes.apple.com/app/id619460348",
602
+ "name": "Tophatter",
603
+ "call_to_action": {
604
+ "type": "INSTALL_MOBILE_APP",
605
+ "value": {
606
+ "application": "295802707128640",
607
+ "link": "https://itunes.apple.com/app/id619460348",
608
+ "link_title": "Tophatter"
609
+ }
610
+ }
611
+ },
612
+ {
613
+ "link": "https://itunes.apple.com/app/id619460348",
614
+ "call_to_action": {
615
+ "type": "INSTALL_MOBILE_APP",
616
+ "value": {
617
+ "application": "295802707128640",
618
+ "link": "https://itunes.apple.com/app/id619460348"
619
+ }
620
+ }
621
+ },
622
+ {
623
+ "link": "https://itunes.apple.com/app/id619460348",
624
+ "call_to_action": {
625
+ "type": "INSTALL_MOBILE_APP",
626
+ "value": {
627
+ "application": "295802707128640",
628
+ "link": "https://itunes.apple.com/app/id619460348"
629
+ }
630
+ }
631
+ }
632
+ ],
633
+ "multi_share_end_card": true,
634
+ "multi_share_optimized": true
635
+ }
636
+ },
637
+ "object_type": "INVALID",
638
+ "thumbnail_url": "https://external.xx.fbcdn.net/safe_image.php?d=AQBUpgXveulYjAj7&w=64&h=64&url=https%3A%2F%2Fscontent.xx.fbcdn.net%2Fv%2Ft1.0-9%2F13645144_1096106237099328_9186797913597492566_n.png%3Foh%3Dda1ed4a885401f0e7477cdab5ac334f9%26oe%3D59796C5C&cfs=1&_nc_hash=AQBLX4jev8NGecY5",
639
+ "run_status": "ACTIVE"
640
+ },
641
+ {
642
+ "id": "<object_id>",
643
+ "name": "Ad from a Page post #6,037,591,364,242",
644
+ "object_story_spec": {
645
+ "page_id": "300664329976860",
646
+ "link_data": {
647
+ "link": "https://itunes.apple.com/app/id619460348",
648
+ "message": "Tophatter hosts the world's most exciting and entertaining live auctions feature",
649
+ "call_to_action": {
650
+ "type": "INSTALL_MOBILE_APP",
651
+ "value": {
652
+ "application": "295802707128640",
653
+ "link": "https://itunes.apple.com/app/id619460348",
654
+ "link_title": "Tophatter"
655
+ }
656
+ },
657
+ "child_attachments": [
658
+ {
659
+ "link": "https://itunes.apple.com/app/id619460348",
660
+ "name": "Tophatter",
661
+ "call_to_action": {
662
+ "type": "INSTALL_MOBILE_APP",
663
+ "value": {
664
+ "application": "295802707128640",
665
+ "link": "https://itunes.apple.com/app/id619460348",
666
+ "link_title": "Tophatter"
667
+ }
668
+ }
669
+ },
670
+ {
671
+ "link": "https://itunes.apple.com/app/id619460348",
672
+ "call_to_action": {
673
+ "type": "INSTALL_MOBILE_APP",
674
+ "value": {
675
+ "application": "295802707128640",
676
+ "link": "https://itunes.apple.com/app/id619460348"
677
+ }
678
+ }
679
+ },
680
+ {
681
+ "link": "https://itunes.apple.com/app/id619460348",
682
+ "call_to_action": {
683
+ "type": "INSTALL_MOBILE_APP",
684
+ "value": {
685
+ "application": "295802707128640",
686
+ "link": "https://itunes.apple.com/app/id619460348"
687
+ }
688
+ }
689
+ }
690
+ ],
691
+ "multi_share_end_card": true,
692
+ "multi_share_optimized": true
693
+ }
694
+ },
695
+ "object_type": "INVALID",
696
+ "thumbnail_url": "https://external.xx.fbcdn.net/safe_image.php?d=AQBUpgXveulYjAj7&w=64&h=64&url=https%3A%2F%2Fscontent.xx.fbcdn.net%2Fv%2Ft1.0-9%2F13645144_1096106237099328_9186797913597492566_n.png%3Foh%3Dda1ed4a885401f0e7477cdab5ac334f9%26oe%3D59796C5C&cfs=1&_nc_hash=AQBLX4jev8NGecY5",
697
+ "run_status": "ACTIVE"
698
+ },
699
+ {
700
+ "id": "<object_id>",
701
+ "name": "Ad from a Page post #6,037,591,361,442",
702
+ "object_story_spec": {
703
+ "page_id": "300664329976860",
704
+ "link_data": {
705
+ "link": "https://itunes.apple.com/app/id619460348",
706
+ "message": "Tophatter hosts the world's most exciting and entertaining live auctions feature",
707
+ "call_to_action": {
708
+ "type": "INSTALL_MOBILE_APP",
709
+ "value": {
710
+ "application": "295802707128640",
711
+ "link": "https://itunes.apple.com/app/id619460348",
712
+ "link_title": "Tophatter"
713
+ }
714
+ },
715
+ "child_attachments": [
716
+ {
717
+ "link": "https://itunes.apple.com/app/id619460348",
718
+ "name": "Tophatter",
719
+ "call_to_action": {
720
+ "type": "INSTALL_MOBILE_APP",
721
+ "value": {
722
+ "application": "295802707128640",
723
+ "link": "https://itunes.apple.com/app/id619460348",
724
+ "link_title": "Tophatter"
725
+ }
726
+ }
727
+ },
728
+ {
729
+ "link": "https://itunes.apple.com/app/id619460348",
730
+ "call_to_action": {
731
+ "type": "INSTALL_MOBILE_APP",
732
+ "value": {
733
+ "application": "295802707128640",
734
+ "link": "https://itunes.apple.com/app/id619460348"
735
+ }
736
+ }
737
+ },
738
+ {
739
+ "link": "https://itunes.apple.com/app/id619460348",
740
+ "call_to_action": {
741
+ "type": "INSTALL_MOBILE_APP",
742
+ "value": {
743
+ "application": "295802707128640",
744
+ "link": "https://itunes.apple.com/app/id619460348"
745
+ }
746
+ }
747
+ }
748
+ ],
749
+ "multi_share_end_card": true,
750
+ "multi_share_optimized": true
751
+ }
752
+ },
753
+ "object_type": "INVALID",
754
+ "thumbnail_url": "https://external.xx.fbcdn.net/safe_image.php?d=AQBUpgXveulYjAj7&w=64&h=64&url=https%3A%2F%2Fscontent.xx.fbcdn.net%2Fv%2Ft1.0-9%2F13645144_1096106237099328_9186797913597492566_n.png%3Foh%3Dda1ed4a885401f0e7477cdab5ac334f9%26oe%3D59796C5C&cfs=1&_nc_hash=AQBLX4jev8NGecY5",
755
+ "run_status": "ACTIVE"
756
+ },
757
+ {
758
+ "id": "<object_id>",
759
+ "name": "Ad from a Page post #6,037,591,360,642",
760
+ "object_story_spec": {
761
+ "page_id": "300664329976860",
762
+ "link_data": {
763
+ "link": "https://itunes.apple.com/app/id619460348",
764
+ "message": "Tophatter hosts the world's most exciting and entertaining live auctions feature",
765
+ "call_to_action": {
766
+ "type": "INSTALL_MOBILE_APP",
767
+ "value": {
768
+ "application": "295802707128640",
769
+ "link": "https://itunes.apple.com/app/id619460348",
770
+ "link_title": "Tophatter"
771
+ }
772
+ },
773
+ "child_attachments": [
774
+ {
775
+ "link": "https://itunes.apple.com/app/id619460348",
776
+ "name": "Tophatter",
777
+ "call_to_action": {
778
+ "type": "INSTALL_MOBILE_APP",
779
+ "value": {
780
+ "application": "295802707128640",
781
+ "link": "https://itunes.apple.com/app/id619460348",
782
+ "link_title": "Tophatter"
783
+ }
784
+ }
785
+ },
786
+ {
787
+ "link": "https://itunes.apple.com/app/id619460348",
788
+ "call_to_action": {
789
+ "type": "INSTALL_MOBILE_APP",
790
+ "value": {
791
+ "application": "295802707128640",
792
+ "link": "https://itunes.apple.com/app/id619460348"
793
+ }
794
+ }
795
+ },
796
+ {
797
+ "link": "https://itunes.apple.com/app/id619460348",
798
+ "call_to_action": {
799
+ "type": "INSTALL_MOBILE_APP",
800
+ "value": {
801
+ "application": "295802707128640",
802
+ "link": "https://itunes.apple.com/app/id619460348"
803
+ }
804
+ }
805
+ }
806
+ ],
807
+ "multi_share_end_card": true,
808
+ "multi_share_optimized": true
809
+ }
810
+ },
811
+ "object_type": "INVALID",
812
+ "thumbnail_url": "https://external.xx.fbcdn.net/safe_image.php?d=AQBUpgXveulYjAj7&w=64&h=64&url=https%3A%2F%2Fscontent.xx.fbcdn.net%2Fv%2Ft1.0-9%2F13645144_1096106237099328_9186797913597492566_n.png%3Foh%3Dda1ed4a885401f0e7477cdab5ac334f9%26oe%3D59796C5C&cfs=1&_nc_hash=AQBLX4jev8NGecY5",
813
+ "run_status": "ACTIVE"
814
+ },
815
+ {
816
+ "id": "<object_id>",
817
+ "name": "Ad from a Page post #6,037,591,360,442",
818
+ "object_story_spec": {
819
+ "page_id": "300664329976860",
820
+ "link_data": {
821
+ "link": "https://itunes.apple.com/app/id619460348",
822
+ "message": "Tophatter hosts the world's most exciting and entertaining live auctions feature",
823
+ "call_to_action": {
824
+ "type": "INSTALL_MOBILE_APP",
825
+ "value": {
826
+ "application": "295802707128640",
827
+ "link": "https://itunes.apple.com/app/id619460348",
828
+ "link_title": "Tophatter"
829
+ }
830
+ },
831
+ "child_attachments": [
832
+ {
833
+ "link": "https://itunes.apple.com/app/id619460348",
834
+ "name": "Tophatter",
835
+ "call_to_action": {
836
+ "type": "INSTALL_MOBILE_APP",
837
+ "value": {
838
+ "application": "295802707128640",
839
+ "link": "https://itunes.apple.com/app/id619460348",
840
+ "link_title": "Tophatter"
841
+ }
842
+ }
843
+ },
844
+ {
845
+ "link": "https://itunes.apple.com/app/id619460348",
846
+ "call_to_action": {
847
+ "type": "INSTALL_MOBILE_APP",
848
+ "value": {
849
+ "application": "295802707128640",
850
+ "link": "https://itunes.apple.com/app/id619460348"
851
+ }
852
+ }
853
+ },
854
+ {
855
+ "link": "https://itunes.apple.com/app/id619460348",
856
+ "call_to_action": {
857
+ "type": "INSTALL_MOBILE_APP",
858
+ "value": {
859
+ "application": "295802707128640",
860
+ "link": "https://itunes.apple.com/app/id619460348"
861
+ }
862
+ }
863
+ }
864
+ ],
865
+ "multi_share_end_card": true,
866
+ "multi_share_optimized": true
867
+ }
868
+ },
869
+ "object_type": "INVALID",
870
+ "thumbnail_url": "https://external.xx.fbcdn.net/safe_image.php?d=AQBUpgXveulYjAj7&w=64&h=64&url=https%3A%2F%2Fscontent.xx.fbcdn.net%2Fv%2Ft1.0-9%2F13645144_1096106237099328_9186797913597492566_n.png%3Foh%3Dda1ed4a885401f0e7477cdab5ac334f9%26oe%3D59796C5C&cfs=1&_nc_hash=AQBLX4jev8NGecY5",
871
+ "run_status": "ACTIVE"
872
+ },
873
+ {
874
+ "id": "<object_id>",
875
+ "name": "Ad from a Page post #6,037,591,347,442",
876
+ "object_story_spec": {
877
+ "page_id": "300664329976860",
878
+ "link_data": {
879
+ "link": "https://itunes.apple.com/app/id619460348",
880
+ "message": "Tophatter hosts the world's most exciting and entertaining live auctions feature",
881
+ "call_to_action": {
882
+ "type": "INSTALL_MOBILE_APP",
883
+ "value": {
884
+ "application": "295802707128640",
885
+ "link": "https://itunes.apple.com/app/id619460348",
886
+ "link_title": "Tophatter"
887
+ }
888
+ },
889
+ "child_attachments": [
890
+ {
891
+ "link": "https://itunes.apple.com/app/id619460348",
892
+ "name": "Tophatter",
893
+ "call_to_action": {
894
+ "type": "INSTALL_MOBILE_APP",
895
+ "value": {
896
+ "application": "295802707128640",
897
+ "link": "https://itunes.apple.com/app/id619460348",
898
+ "link_title": "Tophatter"
899
+ }
900
+ }
901
+ },
902
+ {
903
+ "link": "https://itunes.apple.com/app/id619460348",
904
+ "call_to_action": {
905
+ "type": "INSTALL_MOBILE_APP",
906
+ "value": {
907
+ "application": "295802707128640",
908
+ "link": "https://itunes.apple.com/app/id619460348"
909
+ }
910
+ }
911
+ },
912
+ {
913
+ "link": "https://itunes.apple.com/app/id619460348",
914
+ "call_to_action": {
915
+ "type": "INSTALL_MOBILE_APP",
916
+ "value": {
917
+ "application": "295802707128640",
918
+ "link": "https://itunes.apple.com/app/id619460348"
919
+ }
920
+ }
921
+ }
922
+ ],
923
+ "multi_share_end_card": true,
924
+ "multi_share_optimized": true
925
+ }
926
+ },
927
+ "object_type": "INVALID",
928
+ "thumbnail_url": "https://external.xx.fbcdn.net/safe_image.php?d=AQBUpgXveulYjAj7&w=64&h=64&url=https%3A%2F%2Fscontent.xx.fbcdn.net%2Fv%2Ft1.0-9%2F13645144_1096106237099328_9186797913597492566_n.png%3Foh%3Dda1ed4a885401f0e7477cdab5ac334f9%26oe%3D59796C5C&cfs=1&_nc_hash=AQBLX4jev8NGecY5",
929
+ "run_status": "ACTIVE"
930
+ },
931
+ {
932
+ "id": "<object_id>",
933
+ "name": "Ad from a Page post #6,037,591,151,042",
934
+ "object_story_spec": {
935
+ "page_id": "300664329976860",
936
+ "link_data": {
937
+ "link": "https://itunes.apple.com/app/id619460348",
938
+ "message": "Tophatter hosts the world's most exciting and entertaining live auctions feature",
939
+ "call_to_action": {
940
+ "type": "INSTALL_MOBILE_APP",
941
+ "value": {
942
+ "application": "295802707128640",
943
+ "link": "https://itunes.apple.com/app/id619460348",
944
+ "link_title": "Tophatter"
945
+ }
946
+ },
947
+ "child_attachments": [
948
+ {
949
+ "link": "https://itunes.apple.com/app/id619460348",
950
+ "name": "Tophatter",
951
+ "call_to_action": {
952
+ "type": "INSTALL_MOBILE_APP",
953
+ "value": {
954
+ "application": "295802707128640",
955
+ "link": "https://itunes.apple.com/app/id619460348",
956
+ "link_title": "Tophatter"
957
+ }
958
+ }
959
+ },
960
+ {
961
+ "link": "https://itunes.apple.com/app/id619460348",
962
+ "call_to_action": {
963
+ "type": "INSTALL_MOBILE_APP",
964
+ "value": {
965
+ "application": "295802707128640",
966
+ "link": "https://itunes.apple.com/app/id619460348"
967
+ }
968
+ }
969
+ },
970
+ {
971
+ "link": "https://itunes.apple.com/app/id619460348",
972
+ "call_to_action": {
973
+ "type": "INSTALL_MOBILE_APP",
974
+ "value": {
975
+ "application": "295802707128640",
976
+ "link": "https://itunes.apple.com/app/id619460348"
977
+ }
978
+ }
979
+ }
980
+ ],
981
+ "multi_share_end_card": true,
982
+ "multi_share_optimized": true
983
+ }
984
+ },
985
+ "object_type": "INVALID",
986
+ "thumbnail_url": "https://external.xx.fbcdn.net/safe_image.php?d=AQBUpgXveulYjAj7&w=64&h=64&url=https%3A%2F%2Fscontent.xx.fbcdn.net%2Fv%2Ft1.0-9%2F13645144_1096106237099328_9186797913597492566_n.png%3Foh%3Dda1ed4a885401f0e7477cdab5ac334f9%26oe%3D59796C5C&cfs=1&_nc_hash=AQBLX4jev8NGecY5",
987
+ "run_status": "ACTIVE"
988
+ },
989
+ {
990
+ "id": "<object_id>",
991
+ "name": "Ad from a Page post #6,037,591,146,242",
992
+ "object_story_spec": {
993
+ "page_id": "300664329976860",
994
+ "link_data": {
995
+ "link": "http://play.google.com/store/apps/details?id=com.tophatter",
996
+ "message": "Tophatter hosts the world's most exciting and entertaining live auctions feature",
997
+ "call_to_action": {
998
+ "type": "INSTALL_MOBILE_APP",
999
+ "value": {
1000
+ "application": "295802707128640",
1001
+ "link": "http://play.google.com/store/apps/details?id=com.tophatter",
1002
+ "link_title": "Tophatter"
1003
+ }
1004
+ },
1005
+ "child_attachments": [
1006
+ {
1007
+ "link": "http://play.google.com/store/apps/details?id=com.tophatter",
1008
+ "name": "Tophatter",
1009
+ "call_to_action": {
1010
+ "type": "INSTALL_MOBILE_APP",
1011
+ "value": {
1012
+ "application": "295802707128640",
1013
+ "link": "http://play.google.com/store/apps/details?id=com.tophatter",
1014
+ "link_title": "Tophatter"
1015
+ }
1016
+ }
1017
+ },
1018
+ {
1019
+ "link": "http://play.google.com/store/apps/details?id=com.tophatter",
1020
+ "call_to_action": {
1021
+ "type": "INSTALL_MOBILE_APP",
1022
+ "value": {
1023
+ "application": "295802707128640",
1024
+ "link": "http://play.google.com/store/apps/details?id=com.tophatter"
1025
+ }
1026
+ }
1027
+ },
1028
+ {
1029
+ "link": "http://play.google.com/store/apps/details?id=com.tophatter",
1030
+ "call_to_action": {
1031
+ "type": "INSTALL_MOBILE_APP",
1032
+ "value": {
1033
+ "application": "295802707128640",
1034
+ "link": "http://play.google.com/store/apps/details?id=com.tophatter"
1035
+ }
1036
+ }
1037
+ }
1038
+ ],
1039
+ "multi_share_end_card": true,
1040
+ "multi_share_optimized": true
1041
+ }
1042
+ },
1043
+ "object_type": "INVALID",
1044
+ "thumbnail_url": "https://external.xx.fbcdn.net/safe_image.php?d=AQBUpgXveulYjAj7&w=64&h=64&url=https%3A%2F%2Fscontent.xx.fbcdn.net%2Fv%2Ft1.0-9%2F13645144_1096106237099328_9186797913597492566_n.png%3Foh%3Dda1ed4a885401f0e7477cdab5ac334f9%26oe%3D59796C5C&cfs=1&_nc_hash=AQBLX4jev8NGecY5",
1045
+ "run_status": "ACTIVE"
1046
+ }
1047
+ ]