crunchbase-ruby-library 0.1.7 → 0.3.1
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/.rubocop.yml +66 -0
- data/.rubocop_todo.yml +47 -0
- data/.travis.yml +12 -0
- data/Gemfile +4 -0
- data/README.md +44 -54
- data/Rakefile +4 -1
- data/bin/console +15 -0
- data/bin/setup +8 -0
- data/crunchbase-ruby-library.gemspec +15 -12
- data/lib/crunchbase.rb +12 -3
- data/lib/crunchbase/api.rb +110 -102
- data/lib/crunchbase/client.rb +50 -0
- data/lib/crunchbase/exception.rb +13 -11
- data/lib/crunchbase/model.rb +50 -48
- data/lib/crunchbase/model/acquired_by.rb +23 -20
- data/lib/crunchbase/model/acquiree.rb +2 -1
- data/lib/crunchbase/model/acquirer.rb +2 -1
- data/lib/crunchbase/model/acquisition.rb +16 -19
- data/lib/crunchbase/model/address.rb +4 -6
- data/lib/crunchbase/model/advisory_role.rb +2 -2
- data/lib/crunchbase/model/board_members_and_advisor.rb +10 -9
- data/lib/crunchbase/model/category.rb +6 -7
- data/lib/crunchbase/model/competitor.rb +3 -2
- data/lib/crunchbase/model/current_team.rb +7 -11
- data/lib/crunchbase/model/customer.rb +3 -2
- data/lib/crunchbase/model/degree.rb +4 -5
- data/lib/crunchbase/model/entity.rb +98 -108
- data/lib/crunchbase/model/error.rb +3 -4
- data/lib/crunchbase/model/featured_team.rb +19 -0
- data/lib/crunchbase/model/founded_company.rb +2 -3
- data/lib/crunchbase/model/founder.rb +3 -4
- data/lib/crunchbase/model/fund.rb +8 -11
- data/lib/crunchbase/model/fund_raise.rb +7 -8
- data/lib/crunchbase/model/funding_round.rb +29 -24
- data/lib/crunchbase/model/headquarter.rb +2 -1
- data/lib/crunchbase/model/image.rb +6 -7
- data/lib/crunchbase/model/investment.rb +20 -27
- data/lib/crunchbase/model/investor.rb +6 -7
- data/lib/crunchbase/model/ipo.rb +12 -12
- data/lib/crunchbase/model/job.rb +11 -10
- data/lib/crunchbase/model/location.rb +20 -11
- data/lib/crunchbase/model/member.rb +3 -4
- data/lib/crunchbase/model/membership.rb +7 -8
- data/lib/crunchbase/model/new.rb +5 -6
- data/lib/crunchbase/model/office.rb +3 -4
- data/lib/crunchbase/model/organization.rb +39 -38
- data/lib/crunchbase/model/organization_summary.rb +7 -8
- data/lib/crunchbase/model/owned_by.rb +4 -5
- data/lib/crunchbase/model/parent_location.rb +3 -3
- data/lib/crunchbase/model/past_team.rb +7 -11
- data/lib/crunchbase/model/person.rb +53 -46
- data/lib/crunchbase/model/person_summary.rb +13 -14
- data/lib/crunchbase/model/primary_affiliation.rb +6 -6
- data/lib/crunchbase/model/primary_image.rb +3 -3
- data/lib/crunchbase/model/primary_location.rb +8 -7
- data/lib/crunchbase/model/product.rb +14 -13
- data/lib/crunchbase/model/product_summary.rb +4 -5
- data/lib/crunchbase/model/school.rb +3 -2
- data/lib/crunchbase/model/search.rb +39 -40
- data/lib/crunchbase/model/search_result.rb +7 -6
- data/lib/crunchbase/model/simple_organization.rb +9 -10
- data/lib/crunchbase/model/sub_organization.rb +3 -4
- data/lib/crunchbase/model/video.rb +4 -5
- data/lib/crunchbase/model/website.rb +7 -11
- data/lib/crunchbase/request.rb +8 -0
- data/lib/crunchbase/request/client.rb +69 -0
- data/lib/crunchbase/version.rb +2 -1
- data/spec/crunchbase.yml.example +2 -2
- data/spec/crunchbase/client_spec.rb +25 -0
- data/spec/crunchbase/data/board_members_and_advisors/facebook.json +462 -0
- data/spec/crunchbase/data/categories/facebook.json +67 -0
- data/spec/crunchbase/data/current_team/facebook.json +4335 -0
- data/spec/crunchbase/data/featured_team/facebook.json +286 -0
- data/spec/crunchbase/data/funding_rounds/37bd05f961af726ba3c1b279da842805.json +484 -0
- data/spec/crunchbase/data/funding_rounds/facebook.json +2049 -0
- data/spec/crunchbase/data/headquarters/facebook.json +50 -0
- data/spec/crunchbase/data/investors/facebook.json +776 -0
- data/spec/crunchbase/data/news/facebook.json +1426 -0
- data/spec/crunchbase/data/news/facebook_2.json +1426 -0
- data/spec/crunchbase/data/offices/facebook.json +50 -0
- data/spec/crunchbase/data/organizations/crunchbase.json +2845 -0
- data/spec/crunchbase/data/organizations/ekohe.json +654 -0
- data/spec/crunchbase/data/organizations/facebook-without-relationships.json +45 -0
- data/spec/crunchbase/data/organizations/facebook.json +6723 -0
- data/spec/crunchbase/data/organizations/mx-media-llc.json +7 -0
- data/spec/crunchbase/data/past_team/facebook.json +4336 -0
- data/spec/crunchbase/data/people/facebook_founders.json +148 -0
- data/spec/crunchbase/data/people/mark-zuckerberg.json +2602 -0
- data/spec/crunchbase/data/websites/facebook.json +74 -0
- data/spec/crunchbase/model/board_members_and_advisor_spec.rb +39 -11
- data/spec/crunchbase/model/category_spec.rb +47 -0
- data/spec/crunchbase/model/current_team_spec.rb +50 -0
- data/spec/crunchbase/model/featured_team_spec.rb +40 -0
- data/spec/crunchbase/model/founders_spec.rb +49 -0
- data/spec/crunchbase/model/fund_raise_spec.rb +4 -24
- data/spec/crunchbase/model/funding_round_spec.rb +75 -32
- data/spec/crunchbase/model/headquarter_spec.rb +37 -0
- data/spec/crunchbase/model/investment_spec.rb +4 -15
- data/spec/crunchbase/model/investor_spec.rb +37 -0
- data/spec/crunchbase/model/new_spec.rb +86 -0
- data/spec/crunchbase/model/office_spec.rb +29 -9
- data/spec/crunchbase/model/organization_spec.rb +160 -34
- data/spec/crunchbase/model/past_team_spec.rb +36 -14
- data/spec/crunchbase/model/person_spec.rb +21 -19
- data/spec/crunchbase/model/product_spec.rb +4 -31
- data/spec/crunchbase/model/search_spec.rb +25 -49
- data/spec/crunchbase/model/website_spec.rb +36 -9
- data/spec/crunchbase/support/api_helper.rb +19 -0
- data/spec/spec_helper.rb +14 -4
- metadata +103 -6
|
@@ -0,0 +1,1426 @@
|
|
|
1
|
+
{
|
|
2
|
+
"metadata":
|
|
3
|
+
{
|
|
4
|
+
"version": 31,
|
|
5
|
+
"www_path_prefix": "https://www.crunchbase.com",
|
|
6
|
+
"api_path_prefix": "https://api.crunchbase.com",
|
|
7
|
+
"image_path_prefix": "http://public.crunchbase.com/t_api_images/"
|
|
8
|
+
},
|
|
9
|
+
"data":
|
|
10
|
+
{
|
|
11
|
+
"paging":
|
|
12
|
+
{
|
|
13
|
+
"total_items": 263162,
|
|
14
|
+
"number_of_pages": 2632,
|
|
15
|
+
"current_page": 1,
|
|
16
|
+
"sort_order": "posted_on DESC",
|
|
17
|
+
"items_per_page": 100,
|
|
18
|
+
"next_page_url": "https://api.crunchbase.com/v3.1/organizations/facebook/news?page=2&sort_order=posted_on%20DESC&items_per_page=100",
|
|
19
|
+
"prev_page_url": null,
|
|
20
|
+
"key_set_url": null,
|
|
21
|
+
"collection_url": "https://api.crunchbase.com/v3.1/organizations/facebook/news",
|
|
22
|
+
"updated_since": null
|
|
23
|
+
},
|
|
24
|
+
"items": [
|
|
25
|
+
{
|
|
26
|
+
"type": "News",
|
|
27
|
+
"uuid": "527114a5b61a44989480eea5c4452800",
|
|
28
|
+
"properties":
|
|
29
|
+
{
|
|
30
|
+
"title": "Facebook says its ad transparency features will go live next month",
|
|
31
|
+
"author": "Anthony Ha",
|
|
32
|
+
"posted_on": "2017-10-27",
|
|
33
|
+
"posted_on_trust_code": 7,
|
|
34
|
+
"url": "https://techcrunch.com/2017/10/27/facebook-says-its-ad-transparency-features-will-go-live-next-month/",
|
|
35
|
+
"created_at": 1509127897,
|
|
36
|
+
"updated_at": 1509127897
|
|
37
|
+
}
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"type": "News",
|
|
41
|
+
"uuid": "42714d1db0434ebfb3e6be3b96181d46",
|
|
42
|
+
"properties":
|
|
43
|
+
{
|
|
44
|
+
"title": "Facebook’s Workplace, now at 30,000 orgs, adds Chat desktop apps and group video chat",
|
|
45
|
+
"author": "Ingrid Lunden",
|
|
46
|
+
"posted_on": "2017-10-26",
|
|
47
|
+
"posted_on_trust_code": 7,
|
|
48
|
+
"url": "https://techcrunch.com/2017/10/26/facebooks-workplace-now-at-30000-orgs-adds-chat-desktop-apps-and-group-video-chat/",
|
|
49
|
+
"created_at": 1509024124,
|
|
50
|
+
"updated_at": 1509024124
|
|
51
|
+
}
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
"type": "News",
|
|
55
|
+
"uuid": "04e39c15489543829bffc423f36a0bd9",
|
|
56
|
+
"properties":
|
|
57
|
+
{
|
|
58
|
+
"title": "Facebook launches Marketplace for cars with dealers and Blue Book pricing",
|
|
59
|
+
"author": "Josh Constine",
|
|
60
|
+
"posted_on": "2017-10-26",
|
|
61
|
+
"posted_on_trust_code": 7,
|
|
62
|
+
"url": "https://techcrunch.com/2017/10/26/facebook-marketplace-cars/",
|
|
63
|
+
"created_at": 1509024530,
|
|
64
|
+
"updated_at": 1509024530
|
|
65
|
+
}
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
"type": "News",
|
|
69
|
+
"uuid": "948c099f8e084f61a997745e41d1750f",
|
|
70
|
+
"properties":
|
|
71
|
+
{
|
|
72
|
+
"title": "Zuckerberg’s CZI donates to struggling towns near Facebook",
|
|
73
|
+
"author": "Josh Constine",
|
|
74
|
+
"posted_on": "2017-10-25",
|
|
75
|
+
"posted_on_trust_code": 7,
|
|
76
|
+
"url": "https://techcrunch.com/2017/10/25/hyper-local-giving/",
|
|
77
|
+
"created_at": 1508957953,
|
|
78
|
+
"updated_at": 1508957953
|
|
79
|
+
}
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
"type": "News",
|
|
83
|
+
"uuid": "0863de92a14c47e789dcb0e810bfe677",
|
|
84
|
+
"properties":
|
|
85
|
+
{
|
|
86
|
+
"title": "In Europe, Facebook’s data law buffer looks to be on borrowed time",
|
|
87
|
+
"author": "Natasha Lomas",
|
|
88
|
+
"posted_on": "2017-10-24",
|
|
89
|
+
"posted_on_trust_code": 7,
|
|
90
|
+
"url": "https://techcrunch.com/2017/10/24/in-europe-facebooks-data-law-buffer-looks-to-be-on-borrowed-time/",
|
|
91
|
+
"created_at": 1508870619,
|
|
92
|
+
"updated_at": 1508870619
|
|
93
|
+
}
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
"type": "News",
|
|
97
|
+
"uuid": "e0695918ca8a4c229bf7ab746ac7a1ce",
|
|
98
|
+
"properties":
|
|
99
|
+
{
|
|
100
|
+
"title": "Facebook releases new guidelines to address publisher concerns in its fight against fake news",
|
|
101
|
+
"author": "Anthony Ha",
|
|
102
|
+
"posted_on": "2017-10-24",
|
|
103
|
+
"posted_on_trust_code": 7,
|
|
104
|
+
"url": "https://techcrunch.com/2017/10/24/facebook-publisher-guidelines/",
|
|
105
|
+
"created_at": 1508874715,
|
|
106
|
+
"updated_at": 1508874715
|
|
107
|
+
}
|
|
108
|
+
},
|
|
109
|
+
{
|
|
110
|
+
"type": "News",
|
|
111
|
+
"uuid": "f1f4b618ec1c49478ca5c69161c6b905",
|
|
112
|
+
"properties":
|
|
113
|
+
{
|
|
114
|
+
"title": "Facebook finally adapts to 4K video",
|
|
115
|
+
"author": "Josh Constine",
|
|
116
|
+
"posted_on": "2017-10-24",
|
|
117
|
+
"posted_on_trust_code": 7,
|
|
118
|
+
"url": "https://techcrunch.com/2017/10/24/facebook-4k-video/",
|
|
119
|
+
"created_at": 1508870989,
|
|
120
|
+
"updated_at": 1508870989
|
|
121
|
+
}
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
"type": "News",
|
|
125
|
+
"uuid": "b9d9fd6c4a89452898ba811cd7efb0a6",
|
|
126
|
+
"properties":
|
|
127
|
+
{
|
|
128
|
+
"title": "Facebook’s F8 conference returns to San Jose May 1-2, 2018",
|
|
129
|
+
"author": "Josh Constine",
|
|
130
|
+
"posted_on": "2017-10-24",
|
|
131
|
+
"posted_on_trust_code": 7,
|
|
132
|
+
"url": "https://techcrunch.com/2017/10/24/facebook-f8-2018/",
|
|
133
|
+
"created_at": 1508871622,
|
|
134
|
+
"updated_at": 1508871622
|
|
135
|
+
}
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
"type": "News",
|
|
139
|
+
"uuid": "129f6c64621c42c58dbf8186131f9e1e",
|
|
140
|
+
"properties":
|
|
141
|
+
{
|
|
142
|
+
"title": "Representative asks internet CEOs to explain ‘absurd’ content policies",
|
|
143
|
+
"author": "Devin Coldewey",
|
|
144
|
+
"posted_on": "2017-10-23",
|
|
145
|
+
"posted_on_trust_code": 7,
|
|
146
|
+
"url": "https://techcrunch.com/2017/10/23/representative-asks-internet-ceos-to-explain-absurd-content-policies/",
|
|
147
|
+
"created_at": 1508863447,
|
|
148
|
+
"updated_at": 1508863447
|
|
149
|
+
}
|
|
150
|
+
},
|
|
151
|
+
{
|
|
152
|
+
"type": "News",
|
|
153
|
+
"uuid": "162c1714f4a746abb8d836ca445b23fa",
|
|
154
|
+
"properties":
|
|
155
|
+
{
|
|
156
|
+
"title": "Facebook research automatically creates an avatar from a photo",
|
|
157
|
+
"author": "Devin Coldewey",
|
|
158
|
+
"posted_on": "2017-10-23",
|
|
159
|
+
"posted_on_trust_code": 7,
|
|
160
|
+
"url": "https://techcrunch.com/2017/10/23/facebook-research-automatically-creates-an-avatar-from-a-photo/",
|
|
161
|
+
"created_at": 1508871351,
|
|
162
|
+
"updated_at": 1508871351
|
|
163
|
+
}
|
|
164
|
+
},
|
|
165
|
+
{
|
|
166
|
+
"type": "News",
|
|
167
|
+
"uuid": "74912e7638214079acbf3c0685a8bda0",
|
|
168
|
+
"properties":
|
|
169
|
+
{
|
|
170
|
+
"title": "Facebook downplays test banishing all Pages to buried Explore Feed",
|
|
171
|
+
"author": "Josh Constine",
|
|
172
|
+
"posted_on": "2017-10-23",
|
|
173
|
+
"posted_on_trust_code": 7,
|
|
174
|
+
"url": "https://techcrunch.com/2017/10/23/facebook-page-feed/",
|
|
175
|
+
"created_at": 1508871490,
|
|
176
|
+
"updated_at": 1508871490
|
|
177
|
+
}
|
|
178
|
+
},
|
|
179
|
+
{
|
|
180
|
+
"type": "News",
|
|
181
|
+
"uuid": "e20ed952e4bf4dbdbe7d02e6b78b2039",
|
|
182
|
+
"properties":
|
|
183
|
+
{
|
|
184
|
+
"title": "You can now PayPal friends in Messenger and get help via chat",
|
|
185
|
+
"author": "Sarah Perez",
|
|
186
|
+
"posted_on": "2017-10-20",
|
|
187
|
+
"posted_on_trust_code": 7,
|
|
188
|
+
"url": "https://techcrunch.com/2017/10/20/you-can-now-paypal-friends-in-messenger-and-get-help-via-chat/",
|
|
189
|
+
"created_at": 1508509144,
|
|
190
|
+
"updated_at": 1508509144
|
|
191
|
+
}
|
|
192
|
+
},
|
|
193
|
+
{
|
|
194
|
+
"type": "News",
|
|
195
|
+
"uuid": "e398a56ccb7c423aad4fd7e4ed9dcf0b",
|
|
196
|
+
"properties":
|
|
197
|
+
{
|
|
198
|
+
"title": "Facebook Messenger lets games monetize with purchases and ads",
|
|
199
|
+
"author": "Josh Constine",
|
|
200
|
+
"posted_on": "2017-10-19",
|
|
201
|
+
"posted_on_trust_code": 7,
|
|
202
|
+
"url": "https://techcrunch.com/2017/10/19/facebook-messenger-game-ads-in-app-purchases/",
|
|
203
|
+
"created_at": 1508436538,
|
|
204
|
+
"updated_at": 1508436538
|
|
205
|
+
}
|
|
206
|
+
},
|
|
207
|
+
{
|
|
208
|
+
"type": "News",
|
|
209
|
+
"uuid": "5c8bad4052e14ceebc2c45fe23374df4",
|
|
210
|
+
"properties":
|
|
211
|
+
{
|
|
212
|
+
"title": "Facebook attacks Pinterest with “Sets” of posts",
|
|
213
|
+
"author": "Josh Constine",
|
|
214
|
+
"posted_on": "2017-10-19",
|
|
215
|
+
"posted_on_trust_code": 7,
|
|
216
|
+
"url": "https://techcrunch.com/2017/10/19/facebook-attacks-pinterest-with-sets-of-posts/",
|
|
217
|
+
"created_at": 1508517008,
|
|
218
|
+
"updated_at": 1508517008
|
|
219
|
+
}
|
|
220
|
+
},
|
|
221
|
+
{
|
|
222
|
+
"type": "News",
|
|
223
|
+
"uuid": "a1a97d8ff4834892b9fe9c7b7fc8d3cb",
|
|
224
|
+
"properties":
|
|
225
|
+
{
|
|
226
|
+
"title": "Facebook is now testing paywalls and subscriptions for Instant Articles",
|
|
227
|
+
"author": "Fitz Tepper",
|
|
228
|
+
"posted_on": "2017-10-19",
|
|
229
|
+
"posted_on_trust_code": 7,
|
|
230
|
+
"url": "https://techcrunch.com/2017/10/19/facebook-is-now-testing-paywalls-and-subscriptions-for-instant-articles/",
|
|
231
|
+
"created_at": 1508435333,
|
|
232
|
+
"updated_at": 1508435333
|
|
233
|
+
}
|
|
234
|
+
},
|
|
235
|
+
{
|
|
236
|
+
"type": "News",
|
|
237
|
+
"uuid": "83f88230751d4f42b16a657231570b98",
|
|
238
|
+
"properties":
|
|
239
|
+
{
|
|
240
|
+
"title": "Facebook’s discovery-focused ‘Explore Feed’ hits the desktop",
|
|
241
|
+
"author": "Sarah Perez",
|
|
242
|
+
"posted_on": "2017-10-18",
|
|
243
|
+
"posted_on_trust_code": 7,
|
|
244
|
+
"url": "https://techcrunch.com/2017/10/18/facebooks-discovery-focused-explore-feed-hits-the-desktop/",
|
|
245
|
+
"created_at": 1508344769,
|
|
246
|
+
"updated_at": 1508344769
|
|
247
|
+
}
|
|
248
|
+
},
|
|
249
|
+
{
|
|
250
|
+
"type": "News",
|
|
251
|
+
"uuid": "8b0b2663bfa14d4eaf27adafd35dfe7d",
|
|
252
|
+
"properties":
|
|
253
|
+
{
|
|
254
|
+
"title": "AdHawk acquires Automate Ads to improve Google and Facebook ad campaigns",
|
|
255
|
+
"author": "Anthony Ha",
|
|
256
|
+
"posted_on": "2017-10-18",
|
|
257
|
+
"posted_on_trust_code": 7,
|
|
258
|
+
"url": "https://techcrunch.com/2017/10/18/adhawk-acquires-automate-ads/",
|
|
259
|
+
"created_at": 1508348627,
|
|
260
|
+
"updated_at": 1508348627
|
|
261
|
+
}
|
|
262
|
+
},
|
|
263
|
+
{
|
|
264
|
+
"type": "News",
|
|
265
|
+
"uuid": "a634405f29e54b30a07a40f62357e0ed",
|
|
266
|
+
"properties":
|
|
267
|
+
{
|
|
268
|
+
"title": "Facebook and Google competed for anti-immigration ad dollars during the 2016 election",
|
|
269
|
+
"author": "Devin Coldewey",
|
|
270
|
+
"posted_on": "2017-10-18",
|
|
271
|
+
"posted_on_trust_code": 7,
|
|
272
|
+
"url": "https://techcrunch.com/2017/10/18/facebook-and-google-competed-for-anti-immigration-ad-dollars-during-the-2016-election/",
|
|
273
|
+
"created_at": 1508356004,
|
|
274
|
+
"updated_at": 1508356004
|
|
275
|
+
}
|
|
276
|
+
},
|
|
277
|
+
{
|
|
278
|
+
"type": "News",
|
|
279
|
+
"uuid": "b34c8fee6c7343d78057eea967865f18",
|
|
280
|
+
"properties":
|
|
281
|
+
{
|
|
282
|
+
"title": "“Bad things happen,” Facebook’s response to Russian election interference",
|
|
283
|
+
"author": "Katie Roof",
|
|
284
|
+
"posted_on": "2017-10-18",
|
|
285
|
+
"posted_on_trust_code": 7,
|
|
286
|
+
"url": "https://techcrunch.com/2017/10/18/bad-things-happen-facebooks-response-to-russian-election-interference/",
|
|
287
|
+
"created_at": 1508356097,
|
|
288
|
+
"updated_at": 1508356097
|
|
289
|
+
}
|
|
290
|
+
},
|
|
291
|
+
{
|
|
292
|
+
"type": "News",
|
|
293
|
+
"uuid": "2a7d7daec6a2496b9af4090a89359b75",
|
|
294
|
+
"properties":
|
|
295
|
+
{
|
|
296
|
+
"title": "Facebook tests a resume “work histories” feature to boost recruitment efforts",
|
|
297
|
+
"author": "Ingrid Lunden",
|
|
298
|
+
"posted_on": "2017-10-17",
|
|
299
|
+
"posted_on_trust_code": 7,
|
|
300
|
+
"url": "https://techcrunch.com/2017/10/17/facebook-takes-another-bite-of-linkedin/",
|
|
301
|
+
"created_at": 1508246736,
|
|
302
|
+
"updated_at": 1508246736
|
|
303
|
+
}
|
|
304
|
+
},
|
|
305
|
+
{
|
|
306
|
+
"type": "News",
|
|
307
|
+
"uuid": "e9fbbf8c6261482aa3a5de31c46efeff",
|
|
308
|
+
"properties":
|
|
309
|
+
{
|
|
310
|
+
"title": "Crunch Report | TBH, Facebook Bought TBH So Snap Couldn’t",
|
|
311
|
+
"author": "Khaled \"Tito\" Hamze",
|
|
312
|
+
"posted_on": "2017-10-17",
|
|
313
|
+
"posted_on_trust_code": 7,
|
|
314
|
+
"url": "https://techcrunch.com/2017/10/16/crunch-report-tbh-facebook-bought-tbh-so-snap-couldnt/",
|
|
315
|
+
"created_at": 1508242672,
|
|
316
|
+
"updated_at": 1508242672
|
|
317
|
+
}
|
|
318
|
+
},
|
|
319
|
+
{
|
|
320
|
+
"type": "News",
|
|
321
|
+
"uuid": "c8df9d54a9d2475c8615ea3095328e27",
|
|
322
|
+
"properties":
|
|
323
|
+
{
|
|
324
|
+
"title": "Facebook’s Building 8 head, Regina Dugan, is leaving the company",
|
|
325
|
+
"author": "Lucas Matney",
|
|
326
|
+
"posted_on": "2017-10-17",
|
|
327
|
+
"posted_on_trust_code": 7,
|
|
328
|
+
"url": "https://techcrunch.com/2017/10/17/facebooks-consumer-hardware-chief-regina-dugan-is-leaving-the-company/",
|
|
329
|
+
"created_at": 1508265985,
|
|
330
|
+
"updated_at": 1508265985
|
|
331
|
+
}
|
|
332
|
+
},
|
|
333
|
+
{
|
|
334
|
+
"type": "News",
|
|
335
|
+
"uuid": "b04e800c9d7944f0a8a315dee3886293",
|
|
336
|
+
"properties":
|
|
337
|
+
{
|
|
338
|
+
"title": "Silenced by “free speech”",
|
|
339
|
+
"author": "Josh Constine",
|
|
340
|
+
"posted_on": "2017-10-16",
|
|
341
|
+
"posted_on_trust_code": 7,
|
|
342
|
+
"url": "https://techcrunch.com/2017/10/16/scaling-civility/",
|
|
343
|
+
"created_at": 1508184291,
|
|
344
|
+
"updated_at": 1508184291
|
|
345
|
+
}
|
|
346
|
+
},
|
|
347
|
+
{
|
|
348
|
+
"type": "News",
|
|
349
|
+
"uuid": "02ebe1b1f0f24361999da7e5a7dd1fc9",
|
|
350
|
+
"properties":
|
|
351
|
+
{
|
|
352
|
+
"title": "Facebook’s ‘Order Food’ feature officially launches across the U.S.",
|
|
353
|
+
"author": "Sarah Perez",
|
|
354
|
+
"posted_on": "2017-10-13",
|
|
355
|
+
"posted_on_trust_code": 7,
|
|
356
|
+
"url": "https://techcrunch.com/2017/10/13/facebooks-order-food-feature-officially-launches-across-the-u-s/",
|
|
357
|
+
"created_at": 1507905367,
|
|
358
|
+
"updated_at": 1507905367
|
|
359
|
+
}
|
|
360
|
+
},
|
|
361
|
+
{
|
|
362
|
+
"type": "News",
|
|
363
|
+
"uuid": "e7f3425f0f5041e697224ca00ac748a7",
|
|
364
|
+
"properties":
|
|
365
|
+
{
|
|
366
|
+
"title": "Facebook Stories open to Pages, bringing brands to the ghost town",
|
|
367
|
+
"author": "Josh Constine",
|
|
368
|
+
"posted_on": "2017-10-12",
|
|
369
|
+
"posted_on_trust_code": 7,
|
|
370
|
+
"url": "https://techcrunch.com/2017/10/12/facebook-stories-for-pages/",
|
|
371
|
+
"created_at": 1507827500,
|
|
372
|
+
"updated_at": 1507827500
|
|
373
|
+
}
|
|
374
|
+
},
|
|
375
|
+
{
|
|
376
|
+
"type": "News",
|
|
377
|
+
"uuid": "dfe83d42f3a347a78aea9c3d01c446af",
|
|
378
|
+
"properties":
|
|
379
|
+
{
|
|
380
|
+
"title": "South Park slams Facebook for selling fake news",
|
|
381
|
+
"author": "Josh Constine",
|
|
382
|
+
"posted_on": "2017-10-12",
|
|
383
|
+
"posted_on_trust_code": 7,
|
|
384
|
+
"url": "https://techcrunch.com/2017/10/12/south-park-vs-zuckerberg/",
|
|
385
|
+
"created_at": 1507840936,
|
|
386
|
+
"updated_at": 1507840936
|
|
387
|
+
}
|
|
388
|
+
},
|
|
389
|
+
{
|
|
390
|
+
"type": "News",
|
|
391
|
+
"uuid": "1964263baf394fbca091901da7f3a126",
|
|
392
|
+
"properties":
|
|
393
|
+
{
|
|
394
|
+
"title": "Sandberg says Facebook allows fake news ads from legit accounts",
|
|
395
|
+
"author": "Josh Constine",
|
|
396
|
+
"posted_on": "2017-10-12",
|
|
397
|
+
"posted_on_trust_code": 7,
|
|
398
|
+
"url": "https://techcrunch.com/2017/10/12/facebook-allows-fake-news/",
|
|
399
|
+
"created_at": 1507816041,
|
|
400
|
+
"updated_at": 1507816041
|
|
401
|
+
}
|
|
402
|
+
},
|
|
403
|
+
{
|
|
404
|
+
"type": "News",
|
|
405
|
+
"uuid": "f685da995b9649d5851c0ba421fe2799",
|
|
406
|
+
"properties":
|
|
407
|
+
{
|
|
408
|
+
"title": "After Sandberg chat, House intel plans to release Russian-bought Facebook ads to the public",
|
|
409
|
+
"author": "Taylor Hatmaker",
|
|
410
|
+
"posted_on": "2017-10-12",
|
|
411
|
+
"posted_on_trust_code": 7,
|
|
412
|
+
"url": "https://techcrunch.com/2017/10/11/sheryl-sandberg-house-intelligence-hpsci-release-facebook-ads/",
|
|
413
|
+
"created_at": 1507812400,
|
|
414
|
+
"updated_at": 1507812400
|
|
415
|
+
}
|
|
416
|
+
},
|
|
417
|
+
{
|
|
418
|
+
"type": "News",
|
|
419
|
+
"uuid": "fcd3af4024724aef9960cb2c26e2fd32",
|
|
420
|
+
"properties":
|
|
421
|
+
{
|
|
422
|
+
"title": "Facebook’s ad targeting tools could be a valuable supplement to census data",
|
|
423
|
+
"author": "Devin Coldewey",
|
|
424
|
+
"posted_on": "2017-10-12",
|
|
425
|
+
"posted_on_trust_code": 7,
|
|
426
|
+
"url": "https://techcrunch.com/2017/10/12/facebooks-ad-targeting-tools-could-be-a-valuable-supplement-to-census-data/",
|
|
427
|
+
"created_at": 1507901816,
|
|
428
|
+
"updated_at": 1507901816
|
|
429
|
+
}
|
|
430
|
+
},
|
|
431
|
+
{
|
|
432
|
+
"type": "News",
|
|
433
|
+
"uuid": "ae5e2e6803654a16b357c1026e1a1f41",
|
|
434
|
+
"properties":
|
|
435
|
+
{
|
|
436
|
+
"title": "Facebook “3D Posts” let you play with VR objects in News Feed",
|
|
437
|
+
"author": "Josh Constine",
|
|
438
|
+
"posted_on": "2017-10-11",
|
|
439
|
+
"posted_on_trust_code": 7,
|
|
440
|
+
"url": "https://techcrunch.com/2017/10/11/facebook-3d-posts-let-you-play-with-vr-objects-in-news-feed/",
|
|
441
|
+
"created_at": 1507750579,
|
|
442
|
+
"updated_at": 1507750579
|
|
443
|
+
}
|
|
444
|
+
},
|
|
445
|
+
{
|
|
446
|
+
"type": "News",
|
|
447
|
+
"uuid": "9febd4a7f17648e89150583f84f92b28",
|
|
448
|
+
"properties":
|
|
449
|
+
{
|
|
450
|
+
"title": "Oculus announces $199 ‘Oculus Go’ standalone headset",
|
|
451
|
+
"author": "Lucas Matney",
|
|
452
|
+
"posted_on": "2017-10-11",
|
|
453
|
+
"posted_on_trust_code": 7,
|
|
454
|
+
"url": "https://techcrunch.com/2017/10/11/oculus-announces-199-oculus-go-standalone-headset/",
|
|
455
|
+
"created_at": 1507812512,
|
|
456
|
+
"updated_at": 1507812512
|
|
457
|
+
}
|
|
458
|
+
},
|
|
459
|
+
{
|
|
460
|
+
"type": "News",
|
|
461
|
+
"uuid": "789c0002f7b341189515e3d65c8b7566",
|
|
462
|
+
"properties":
|
|
463
|
+
{
|
|
464
|
+
"title": "Facebook seriously needs its own Bitmoji",
|
|
465
|
+
"author": "Josh Constine",
|
|
466
|
+
"posted_on": "2017-10-11",
|
|
467
|
+
"posted_on_trust_code": 7,
|
|
468
|
+
"url": "https://techcrunch.com/2017/10/10/facemoji/",
|
|
469
|
+
"created_at": 1507725774,
|
|
470
|
+
"updated_at": 1507725774
|
|
471
|
+
}
|
|
472
|
+
},
|
|
473
|
+
{
|
|
474
|
+
"type": "News",
|
|
475
|
+
"uuid": "741b8515855241a9b3f401e49d3bc962",
|
|
476
|
+
"properties":
|
|
477
|
+
{
|
|
478
|
+
"title": "Facebook plans “Venues” for watching concerts, sports, movies in VR",
|
|
479
|
+
"author": "Josh Constine",
|
|
480
|
+
"posted_on": "2017-10-11",
|
|
481
|
+
"posted_on_trust_code": 7,
|
|
482
|
+
"url": "https://techcrunch.com/2017/10/11/facebook-venues/",
|
|
483
|
+
"created_at": 1507744575,
|
|
484
|
+
"updated_at": 1507744575
|
|
485
|
+
}
|
|
486
|
+
},
|
|
487
|
+
{
|
|
488
|
+
"type": "News",
|
|
489
|
+
"uuid": "168836907b164a68a1c75ba2af7a6b63",
|
|
490
|
+
"properties":
|
|
491
|
+
{
|
|
492
|
+
"title": "Facebook’s new virtual reality strategy: self-reliance",
|
|
493
|
+
"author": "Lucas Matney",
|
|
494
|
+
"posted_on": "2017-10-11",
|
|
495
|
+
"posted_on_trust_code": 7,
|
|
496
|
+
"url": "https://techcrunch.com/2017/10/11/facebooks-new-virtual-reality-strategy-self-reliance/",
|
|
497
|
+
"created_at": 1507754103,
|
|
498
|
+
"updated_at": 1507754103
|
|
499
|
+
}
|
|
500
|
+
},
|
|
501
|
+
{
|
|
502
|
+
"type": "News",
|
|
503
|
+
"uuid": "726c27d7442f40189bd9433d3de0a74c",
|
|
504
|
+
"properties":
|
|
505
|
+
{
|
|
506
|
+
"title": "VR Mark Zuckerberg discusses how Facebook is using AI to aid the Red Cross in Puerto Rico",
|
|
507
|
+
"author": "Lucas Matney",
|
|
508
|
+
"posted_on": "2017-10-10",
|
|
509
|
+
"posted_on_trust_code": 7,
|
|
510
|
+
"url": "https://techcrunch.com/2017/10/09/vr-zuckerberg-shares-details-on-some-of-facebooks-ai-aid-to-the-red-cross-in-puerto-rico/?ncid=mobilenavtrend",
|
|
511
|
+
"created_at": 1507638399,
|
|
512
|
+
"updated_at": 1507638399
|
|
513
|
+
}
|
|
514
|
+
},
|
|
515
|
+
{
|
|
516
|
+
"type": "News",
|
|
517
|
+
"uuid": "13ccf65ed3be4390bf988fd3fc331969",
|
|
518
|
+
"properties":
|
|
519
|
+
{
|
|
520
|
+
"title": "Facebook security chief rants about misguided “algorithm” backlash",
|
|
521
|
+
"author": "Josh Constine",
|
|
522
|
+
"posted_on": "2017-10-07",
|
|
523
|
+
"posted_on_trust_code": 7,
|
|
524
|
+
"url": "https://techcrunch.com/2017/10/07/alex-stamos/",
|
|
525
|
+
"created_at": 1507559686,
|
|
526
|
+
"updated_at": 1507559686
|
|
527
|
+
}
|
|
528
|
+
},
|
|
529
|
+
{
|
|
530
|
+
"type": "News",
|
|
531
|
+
"uuid": "8e6e8d2a0a5016f602bcd5c6494d8594",
|
|
532
|
+
"properties":
|
|
533
|
+
{
|
|
534
|
+
"title": "Instagram Stories launches cross-posting to Facebook Stories",
|
|
535
|
+
"author": "Josh Constine",
|
|
536
|
+
"posted_on": "2017-10-05",
|
|
537
|
+
"posted_on_trust_code": 7,
|
|
538
|
+
"url": "https://techcrunch.com/2017/10/04/instaface/",
|
|
539
|
+
"created_at": 1507208122,
|
|
540
|
+
"updated_at": 1507208183
|
|
541
|
+
}
|
|
542
|
+
},
|
|
543
|
+
{
|
|
544
|
+
"type": "News",
|
|
545
|
+
"uuid": "2de28b6094de1fb4310762e7b947a5e1",
|
|
546
|
+
"properties":
|
|
547
|
+
{
|
|
548
|
+
"title": "Facebook tries fighting fake news with publisher info button on links",
|
|
549
|
+
"author": "Josh Constine",
|
|
550
|
+
"posted_on": "2017-10-05",
|
|
551
|
+
"posted_on_trust_code": 7,
|
|
552
|
+
"url": "https://techcrunch.com/2017/10/05/facebook-article-information-button/",
|
|
553
|
+
"created_at": 1507227542,
|
|
554
|
+
"updated_at": 1507227542
|
|
555
|
+
}
|
|
556
|
+
},
|
|
557
|
+
{
|
|
558
|
+
"type": "News",
|
|
559
|
+
"uuid": "db87d3a47c690eb9456385e981be3814",
|
|
560
|
+
"properties":
|
|
561
|
+
{
|
|
562
|
+
"title": "Senate Intel committee calls on Facebook to release Russian ads",
|
|
563
|
+
"author": "Taylor Hatmaker",
|
|
564
|
+
"posted_on": "2017-10-04",
|
|
565
|
+
"posted_on_trust_code": 7,
|
|
566
|
+
"url": "https://techcrunch.com/2017/10/04/senate-intel-committee-burr-warner-facebook-ads/",
|
|
567
|
+
"created_at": 1507143137,
|
|
568
|
+
"updated_at": 1507143137
|
|
569
|
+
}
|
|
570
|
+
},
|
|
571
|
+
{
|
|
572
|
+
"type": "News",
|
|
573
|
+
"uuid": "b226d9bfa0f5cb935b0ec8ac739b9387",
|
|
574
|
+
"properties":
|
|
575
|
+
{
|
|
576
|
+
"title": "Challenge to data transfer tool used by Facebook will go to Europe’s top court",
|
|
577
|
+
"author": "Natasha Lomas",
|
|
578
|
+
"posted_on": "2017-10-03",
|
|
579
|
+
"posted_on_trust_code": 7,
|
|
580
|
+
"url": "https://techcrunch.com/2017/10/03/challenge-to-data-transfer-tool-used-by-facebook-will-go-to-europes-top-court/",
|
|
581
|
+
"created_at": 1507038565,
|
|
582
|
+
"updated_at": 1507038565
|
|
583
|
+
}
|
|
584
|
+
},
|
|
585
|
+
{
|
|
586
|
+
"type": "News",
|
|
587
|
+
"uuid": "1b4195936fd2a1393cc0d4cd97900ac8",
|
|
588
|
+
"properties":
|
|
589
|
+
{
|
|
590
|
+
"title": "Crunch Report | Facebook Fixing Its Election Ads Problem",
|
|
591
|
+
"author": "Khaled \"Tito\" Hamze",
|
|
592
|
+
"posted_on": "2017-10-03",
|
|
593
|
+
"posted_on_trust_code": 7,
|
|
594
|
+
"url": "https://techcrunch.com/2017/10/02/crunch-report-facebook-fixing-its-election-ads-problem/",
|
|
595
|
+
"created_at": 1507036534,
|
|
596
|
+
"updated_at": 1507036534
|
|
597
|
+
}
|
|
598
|
+
},
|
|
599
|
+
{
|
|
600
|
+
"type": "News",
|
|
601
|
+
"uuid": "b95eacfd731d31a6e023a7ea291324d0",
|
|
602
|
+
"properties":
|
|
603
|
+
{
|
|
604
|
+
"title": "Search and social media was filled with clickbait and propaganda in the wake of Vegas shooting",
|
|
605
|
+
"author": "Jonathan Shieber",
|
|
606
|
+
"posted_on": "2017-10-02",
|
|
607
|
+
"posted_on_trust_code": 7,
|
|
608
|
+
"url": "https://techcrunch.com/2017/10/02/search-and-social-media-was-filled-with-clickbait-and-propaganda-in-the-wake-of-vegas-shooting/",
|
|
609
|
+
"created_at": 1506970406,
|
|
610
|
+
"updated_at": 1506970484
|
|
611
|
+
}
|
|
612
|
+
},
|
|
613
|
+
{
|
|
614
|
+
"type": "News",
|
|
615
|
+
"uuid": "72db770e8f9a1769aea30015b407680e",
|
|
616
|
+
"properties":
|
|
617
|
+
{
|
|
618
|
+
"title": "Facebook will share Russian-bought election interference ads with congress tomorrow",
|
|
619
|
+
"author": "Josh Constine",
|
|
620
|
+
"posted_on": "2017-10-02",
|
|
621
|
+
"posted_on_trust_code": 7,
|
|
622
|
+
"url": "https://techcrunch.com/2017/10/01/facebook-russian-ads/",
|
|
623
|
+
"created_at": 1506948702,
|
|
624
|
+
"updated_at": 1506948702
|
|
625
|
+
}
|
|
626
|
+
},
|
|
627
|
+
{
|
|
628
|
+
"type": "News",
|
|
629
|
+
"uuid": "2cde0dca386f22c05c49f10b8b960197",
|
|
630
|
+
"properties":
|
|
631
|
+
{
|
|
632
|
+
"title": "Facebook brings data plan-saving Messenger Lite to U.S. Androids",
|
|
633
|
+
"author": "Josh Constine",
|
|
634
|
+
"posted_on": "2017-10-02",
|
|
635
|
+
"posted_on_trust_code": 7,
|
|
636
|
+
"url": "https://techcrunch.com/2017/10/02/facebook-lite-us-uk-canada-ireland/",
|
|
637
|
+
"created_at": 1506966106,
|
|
638
|
+
"updated_at": 1507019001
|
|
639
|
+
}
|
|
640
|
+
},
|
|
641
|
+
{
|
|
642
|
+
"type": "News",
|
|
643
|
+
"uuid": "c7e64b281cae91ecebef8802232db85a",
|
|
644
|
+
"properties":
|
|
645
|
+
{
|
|
646
|
+
"title": "Facebook will hire 1,000 and make ads visible to fight election interference",
|
|
647
|
+
"author": "Josh Constine",
|
|
648
|
+
"posted_on": "2017-10-02",
|
|
649
|
+
"posted_on_trust_code": 7,
|
|
650
|
+
"url": "https://techcrunch.com/2017/10/02/facebook-will-hire-1000-and-make-ads-visible-to-fight-election-interference/",
|
|
651
|
+
"created_at": 1506960591,
|
|
652
|
+
"updated_at": 1506960591
|
|
653
|
+
}
|
|
654
|
+
},
|
|
655
|
+
{
|
|
656
|
+
"type": "News",
|
|
657
|
+
"uuid": "154d72ee5c084c7eb2e1fac2d843e991",
|
|
658
|
+
"properties":
|
|
659
|
+
{
|
|
660
|
+
"title": "Zuckerberg asks forgiveness, but Facebook needs change",
|
|
661
|
+
"author": "Josh Constine",
|
|
662
|
+
"posted_on": "2017-10-01",
|
|
663
|
+
"posted_on_trust_code": 7,
|
|
664
|
+
"url": "https://techcrunch.com/2017/10/01/anticipate-the-worst/",
|
|
665
|
+
"created_at": 1506873886,
|
|
666
|
+
"updated_at": 1506950133
|
|
667
|
+
}
|
|
668
|
+
},
|
|
669
|
+
{
|
|
670
|
+
"type": "News",
|
|
671
|
+
"uuid": "0ebb00f46f91440ab6695abe570948eb",
|
|
672
|
+
"properties":
|
|
673
|
+
{
|
|
674
|
+
"title": "Facebook tests facial recognition for account recovery",
|
|
675
|
+
"author": "Josh Constine",
|
|
676
|
+
"posted_on": "2017-09-29",
|
|
677
|
+
"posted_on_trust_code": 7,
|
|
678
|
+
"url": "https://techcrunch.com/2017/09/29/facebook-face-id/",
|
|
679
|
+
"created_at": 1506713531,
|
|
680
|
+
"updated_at": 1506713531
|
|
681
|
+
}
|
|
682
|
+
},
|
|
683
|
+
{
|
|
684
|
+
"type": "News",
|
|
685
|
+
"uuid": "3303b5496c1c4daf7db9d081f5a9d5d1",
|
|
686
|
+
"properties":
|
|
687
|
+
{
|
|
688
|
+
"title": "Facebook helps blood donation go viral",
|
|
689
|
+
"author": "Josh Constine",
|
|
690
|
+
"posted_on": "2017-09-28",
|
|
691
|
+
"posted_on_trust_code": 7,
|
|
692
|
+
"url": "https://techcrunch.com/2017/09/27/bloodbook/",
|
|
693
|
+
"created_at": 1506607525,
|
|
694
|
+
"updated_at": 1506607525
|
|
695
|
+
}
|
|
696
|
+
},
|
|
697
|
+
{
|
|
698
|
+
"type": "News",
|
|
699
|
+
"uuid": "81568df0f81e0379cd524bd682066125",
|
|
700
|
+
"properties":
|
|
701
|
+
{
|
|
702
|
+
"title": "Facebook partners with ZipRecruiter and more aggregators as it ramps up in jobs",
|
|
703
|
+
"author": "Ingrid Lunden",
|
|
704
|
+
"posted_on": "2017-09-28",
|
|
705
|
+
"posted_on_trust_code": 7,
|
|
706
|
+
"url": "https://techcrunch.com/2017/09/28/facebook-partners-with-ziprecruiter-and-more-aggregators-as-it-ramps-up-in-jobs/",
|
|
707
|
+
"created_at": 1506620356,
|
|
708
|
+
"updated_at": 1506620502
|
|
709
|
+
}
|
|
710
|
+
},
|
|
711
|
+
{
|
|
712
|
+
"type": "News",
|
|
713
|
+
"uuid": "321c7f181e3d9f4b57ce3baad1c1b4ee",
|
|
714
|
+
"properties":
|
|
715
|
+
{
|
|
716
|
+
"title": "Zuckerberg details Facebook’s response to Puerto Rico’s humanitarian crisis",
|
|
717
|
+
"author": "Jonathan Shieber",
|
|
718
|
+
"posted_on": "2017-09-27",
|
|
719
|
+
"posted_on_trust_code": 7,
|
|
720
|
+
"url": "https://techcrunch.com/2017/09/27/zuckerberg-details-facebooks-response-to-puerto-ricos-humanitarian-crisis/",
|
|
721
|
+
"created_at": 1506605156,
|
|
722
|
+
"updated_at": 1506605372
|
|
723
|
+
}
|
|
724
|
+
},
|
|
725
|
+
{
|
|
726
|
+
"type": "News",
|
|
727
|
+
"uuid": "a16ca11be676ef10dff23ee34c760fd8",
|
|
728
|
+
"properties":
|
|
729
|
+
{
|
|
730
|
+
"title": "Mark Zuckerberg responds to Trump’s claim that ‘Facebook has always been against him’",
|
|
731
|
+
"author": "Megan Rose Dickey",
|
|
732
|
+
"posted_on": "2017-09-27",
|
|
733
|
+
"posted_on_trust_code": 7,
|
|
734
|
+
"url": "https://techcrunch.com/2017/09/27/mark-zuckerberg-responds-to-anti-trump-claim/",
|
|
735
|
+
"created_at": 1506600664,
|
|
736
|
+
"updated_at": 1506600734
|
|
737
|
+
}
|
|
738
|
+
},
|
|
739
|
+
{
|
|
740
|
+
"type": "News",
|
|
741
|
+
"uuid": "e5b79209f92194bcdbb2e1608453286b",
|
|
742
|
+
"properties":
|
|
743
|
+
{
|
|
744
|
+
"title": "Delta to offer free in-flight use of WhatsApp, Facebook Messenger and iMessage",
|
|
745
|
+
"author": "Matt Burns",
|
|
746
|
+
"posted_on": "2017-09-27",
|
|
747
|
+
"posted_on_trust_code": 7,
|
|
748
|
+
"url": "https://techcrunch.com/2017/09/27/delta-to-offer-free-in-flight-use-of-whatsup-facebook-messenger-and-imessage/",
|
|
749
|
+
"created_at": 1506599979,
|
|
750
|
+
"updated_at": 1506600056
|
|
751
|
+
}
|
|
752
|
+
},
|
|
753
|
+
{
|
|
754
|
+
"type": "News",
|
|
755
|
+
"uuid": "204414c214126e306a12ae4828c551d8",
|
|
756
|
+
"properties":
|
|
757
|
+
{
|
|
758
|
+
"title": "Facebook shows progress thwarting election interference in Germany",
|
|
759
|
+
"author": "Josh Constine",
|
|
760
|
+
"posted_on": "2017-09-27",
|
|
761
|
+
"posted_on_trust_code": 7,
|
|
762
|
+
"url": "https://techcrunch.com/2017/09/27/facebook-election-interference/",
|
|
763
|
+
"created_at": 1506534183,
|
|
764
|
+
"updated_at": 1506534183
|
|
765
|
+
}
|
|
766
|
+
},
|
|
767
|
+
{
|
|
768
|
+
"type": "News",
|
|
769
|
+
"uuid": "349b53b96d53300ac2812aaf90ed8984",
|
|
770
|
+
"properties":
|
|
771
|
+
{
|
|
772
|
+
"title": "The NFL partners with Facebook to distribute game highlights and recaps on the social network",
|
|
773
|
+
"author": "Sarah Perez",
|
|
774
|
+
"posted_on": "2017-09-26",
|
|
775
|
+
"posted_on_trust_code": 7,
|
|
776
|
+
"url": "https://techcrunch.com/2017/09/26/the-nfl-partners-with-facebook-to-distribute-game-highlights-and-recaps-on-the-social-network/",
|
|
777
|
+
"created_at": 1506442560,
|
|
778
|
+
"updated_at": 1506442638
|
|
779
|
+
}
|
|
780
|
+
},
|
|
781
|
+
{
|
|
782
|
+
"type": "News",
|
|
783
|
+
"uuid": "ef04782148994061b99a3a53d9863b80",
|
|
784
|
+
"properties":
|
|
785
|
+
{
|
|
786
|
+
"title": "Thoughts on Facebook’s 9 plans to curb election interference",
|
|
787
|
+
"author": "Josh Constine",
|
|
788
|
+
"posted_on": "2017-09-22",
|
|
789
|
+
"posted_on_trust_code": 7,
|
|
790
|
+
"url": "https://techcrunch.com/2017/09/21/election-interference/",
|
|
791
|
+
"created_at": 1506084164,
|
|
792
|
+
"updated_at": 1506084226
|
|
793
|
+
}
|
|
794
|
+
},
|
|
795
|
+
{
|
|
796
|
+
"type": "News",
|
|
797
|
+
"uuid": "1c5be635d98dfedf4d226c66b3f4d6e5",
|
|
798
|
+
"properties":
|
|
799
|
+
{
|
|
800
|
+
"title": "Facebook drops no-vote stock plan, Zuck will sell shares to fund philanthropy",
|
|
801
|
+
"author": "Josh Constine",
|
|
802
|
+
"posted_on": "2017-09-22",
|
|
803
|
+
"posted_on_trust_code": 7,
|
|
804
|
+
"url": "https://techcrunch.com/2017/09/22/facebook-sharing/",
|
|
805
|
+
"created_at": 1506342024,
|
|
806
|
+
"updated_at": 1506342041
|
|
807
|
+
}
|
|
808
|
+
},
|
|
809
|
+
{
|
|
810
|
+
"type": "News",
|
|
811
|
+
"uuid": "f018961b18c0afa019e88cabadd5df2c",
|
|
812
|
+
"properties":
|
|
813
|
+
{
|
|
814
|
+
"title": "Facebook and Twitter play bigger role in Congressional election-hacking probe",
|
|
815
|
+
"author": "Jonathan Shieber",
|
|
816
|
+
"posted_on": "2017-09-21",
|
|
817
|
+
"posted_on_trust_code": 7,
|
|
818
|
+
"url": "https://techcrunch.com/2017/09/21/facebook-and-twitter-play-bigger-role-in-congressional-election-hacking-probe/",
|
|
819
|
+
"created_at": 1506083820,
|
|
820
|
+
"updated_at": 1506083893
|
|
821
|
+
}
|
|
822
|
+
},
|
|
823
|
+
{
|
|
824
|
+
"type": "News",
|
|
825
|
+
"uuid": "d0ab28a139cc39ec3c733df77e4b586c",
|
|
826
|
+
"properties":
|
|
827
|
+
{
|
|
828
|
+
"title": "Facebook vows to manually review ad targeting after ‘Jew-Haters’ scandal",
|
|
829
|
+
"author": "Josh Constine",
|
|
830
|
+
"posted_on": "2017-09-20",
|
|
831
|
+
"posted_on_trust_code": 7,
|
|
832
|
+
"url": "https://techcrunch.com/2017/09/20/anticipating-the-dark-side/",
|
|
833
|
+
"created_at": 1505939811,
|
|
834
|
+
"updated_at": 1505939863
|
|
835
|
+
}
|
|
836
|
+
},
|
|
837
|
+
{
|
|
838
|
+
"type": "News",
|
|
839
|
+
"uuid": "e4e249506fa497a2fc4fbfce53ca91c5",
|
|
840
|
+
"properties":
|
|
841
|
+
{
|
|
842
|
+
"title": "Senate Intelligence Committee wants Facebook to appear in a public Russia hearing",
|
|
843
|
+
"author": "Taylor Hatmaker",
|
|
844
|
+
"posted_on": "2017-09-20",
|
|
845
|
+
"posted_on_trust_code": 7,
|
|
846
|
+
"url": "https://techcrunch.com/2017/09/20/facebook-ssci-russia-hearing/",
|
|
847
|
+
"created_at": 1505938808,
|
|
848
|
+
"updated_at": 1505938899
|
|
849
|
+
}
|
|
850
|
+
},
|
|
851
|
+
{
|
|
852
|
+
"type": "News",
|
|
853
|
+
"uuid": "8969c6129713201fa47565b1c6d47141",
|
|
854
|
+
"properties":
|
|
855
|
+
{
|
|
856
|
+
"title": "You can now launch the Instagram app directly from Facebook",
|
|
857
|
+
"author": "Sarah Perez",
|
|
858
|
+
"posted_on": "2017-09-20",
|
|
859
|
+
"posted_on_trust_code": 7,
|
|
860
|
+
"url": "https://techcrunch.com/2017/09/20/you-can-now-launch-the-instagram-app-directly-from-facebook/",
|
|
861
|
+
"created_at": 1505938218,
|
|
862
|
+
"updated_at": 1505938364
|
|
863
|
+
}
|
|
864
|
+
},
|
|
865
|
+
{
|
|
866
|
+
"type": "News",
|
|
867
|
+
"uuid": "909d79ec7b90086c2cf6290cf5519030",
|
|
868
|
+
"properties":
|
|
869
|
+
{
|
|
870
|
+
"title": "Facebook design head loud on voice, silent on Alexa and hardware",
|
|
871
|
+
"author": "Ingrid Lunden",
|
|
872
|
+
"posted_on": "2017-09-19",
|
|
873
|
+
"posted_on_trust_code": 7,
|
|
874
|
+
"url": "https://techcrunch.com/2017/09/18/facebook-design-head-bullish-on-voice-dodges-questions-on-voice-apps-and-hardware/",
|
|
875
|
+
"created_at": 1505828100,
|
|
876
|
+
"updated_at": 1505828100
|
|
877
|
+
}
|
|
878
|
+
},
|
|
879
|
+
{
|
|
880
|
+
"type": "News",
|
|
881
|
+
"uuid": "5bfeb8caa7a495f460ac7ee5a6e1cb8a",
|
|
882
|
+
"properties":
|
|
883
|
+
{
|
|
884
|
+
"title": "See what Facebook ads you actually clicked in “Recent Ad Activity”",
|
|
885
|
+
"author": "Josh Constine",
|
|
886
|
+
"posted_on": "2017-09-19",
|
|
887
|
+
"posted_on_trust_code": 7,
|
|
888
|
+
"url": "https://techcrunch.com/2017/09/19/facebook-recent-ad-activity/",
|
|
889
|
+
"created_at": 1505850337,
|
|
890
|
+
"updated_at": 1505850337
|
|
891
|
+
}
|
|
892
|
+
},
|
|
893
|
+
{
|
|
894
|
+
"type": "News",
|
|
895
|
+
"uuid": "664db901925f420cadb1672c7348b6f1",
|
|
896
|
+
"properties":
|
|
897
|
+
{
|
|
898
|
+
"title": "Facebook nabs Change.org COO Jennifer Dulski to lead Groups",
|
|
899
|
+
"author": "Josh Constine",
|
|
900
|
+
"posted_on": "2017-09-18",
|
|
901
|
+
"posted_on_trust_code": 7,
|
|
902
|
+
"url": "https://techcrunch.com/2017/09/18/jennifer-dulski/",
|
|
903
|
+
"created_at": 1505787951,
|
|
904
|
+
"updated_at": 1505825324
|
|
905
|
+
}
|
|
906
|
+
},
|
|
907
|
+
{
|
|
908
|
+
"type": "News",
|
|
909
|
+
"uuid": "cfe1a82f60d4cd99059406b86d64a9ea",
|
|
910
|
+
"properties":
|
|
911
|
+
{
|
|
912
|
+
"title": "Facebook halts ad targeting of profile details abused by users",
|
|
913
|
+
"author": "Devin Coldewey",
|
|
914
|
+
"posted_on": "2017-09-15",
|
|
915
|
+
"posted_on_trust_code": 7,
|
|
916
|
+
"url": "https://techcrunch.com/2017/09/15/facebook-halts-ad-targeting-of-profile-details-abused-by-users/",
|
|
917
|
+
"created_at": 1505480353,
|
|
918
|
+
"updated_at": 1505480353
|
|
919
|
+
}
|
|
920
|
+
},
|
|
921
|
+
{
|
|
922
|
+
"type": "News",
|
|
923
|
+
"uuid": "5ef8c8bdf0677b6f5390419a977c116f",
|
|
924
|
+
"properties":
|
|
925
|
+
{
|
|
926
|
+
"title": "Report: Facebook gave special investigator Robert Mueller detailed info on Russian ad buys",
|
|
927
|
+
"author": "Jonathan Shieber",
|
|
928
|
+
"posted_on": "2017-09-15",
|
|
929
|
+
"posted_on_trust_code": 7,
|
|
930
|
+
"url": "https://techcrunch.com/2017/09/15/report-facebook-gave-special-investigator-robert-mueller-detailed-info-on-russian-ad-buys/",
|
|
931
|
+
"created_at": 1505755582,
|
|
932
|
+
"updated_at": 1505756032
|
|
933
|
+
}
|
|
934
|
+
},
|
|
935
|
+
{
|
|
936
|
+
"type": "News",
|
|
937
|
+
"uuid": "f4b819d7cf64b29e3dd71eb2bc2cf87c",
|
|
938
|
+
"properties":
|
|
939
|
+
{
|
|
940
|
+
"title": "WordPress to ditch React library over Facebook patent clause risk",
|
|
941
|
+
"author": "Natasha Lomas",
|
|
942
|
+
"posted_on": "2017-09-15",
|
|
943
|
+
"posted_on_trust_code": 7,
|
|
944
|
+
"url": "https://techcrunch.com/2017/09/15/wordpress-to-ditch-react-library-over-facebook-patent-clause-risk/",
|
|
945
|
+
"created_at": 1505486726,
|
|
946
|
+
"updated_at": 1505486781
|
|
947
|
+
}
|
|
948
|
+
},
|
|
949
|
+
{
|
|
950
|
+
"type": "News",
|
|
951
|
+
"uuid": "bb2bce8cc541a0d82abecb820a5b96bc",
|
|
952
|
+
"properties":
|
|
953
|
+
{
|
|
954
|
+
"title": "Facebook is the latest tech giant to hunt for AI talent in Canada",
|
|
955
|
+
"author": "John Mannes",
|
|
956
|
+
"posted_on": "2017-09-15",
|
|
957
|
+
"posted_on_trust_code": 7,
|
|
958
|
+
"url": "https://techcrunch.com/2017/09/14/facebook-is-the-latest-tech-giant-to-hunt-for-ai-talent-in-canada/",
|
|
959
|
+
"created_at": 1505479441,
|
|
960
|
+
"updated_at": 1505479441
|
|
961
|
+
}
|
|
962
|
+
},
|
|
963
|
+
{
|
|
964
|
+
"type": "News",
|
|
965
|
+
"uuid": "b09679f5027a74bf88ffc052deb85c2c",
|
|
966
|
+
"properties":
|
|
967
|
+
{
|
|
968
|
+
"title": "Facebook centralizes its crisis response tools in a new hub called Crisis Response",
|
|
969
|
+
"author": "Sarah Perez",
|
|
970
|
+
"posted_on": "2017-09-14",
|
|
971
|
+
"posted_on_trust_code": 7,
|
|
972
|
+
"url": "https://techcrunch.com/2017/09/14/facebook-centralizes-its-crisis-response-tools-in-a-new-hub-called-crisis-response/",
|
|
973
|
+
"created_at": 1505405619,
|
|
974
|
+
"updated_at": 1505405619
|
|
975
|
+
}
|
|
976
|
+
},
|
|
977
|
+
{
|
|
978
|
+
"type": "News",
|
|
979
|
+
"uuid": "d5ca346d067a1b2d865201c4ed9d27a4",
|
|
980
|
+
"properties":
|
|
981
|
+
{
|
|
982
|
+
"title": "Facebook “Snooze” button temporarily hides people in your feed",
|
|
983
|
+
"author": "Josh Constine",
|
|
984
|
+
"posted_on": "2017-09-14",
|
|
985
|
+
"posted_on_trust_code": 7,
|
|
986
|
+
"url": "https://techcrunch.com/2017/09/14/facebook-snooze/",
|
|
987
|
+
"created_at": 1505406302,
|
|
988
|
+
"updated_at": 1505406302
|
|
989
|
+
}
|
|
990
|
+
},
|
|
991
|
+
{
|
|
992
|
+
"type": "News",
|
|
993
|
+
"uuid": "51389d2de82366892f486e26fe32ac44",
|
|
994
|
+
"properties":
|
|
995
|
+
{
|
|
996
|
+
"title": "Facebook’s generation of ‘Jew Hater’ and other advertising categories prompts system inspection",
|
|
997
|
+
"author": "Devin Coldewey",
|
|
998
|
+
"posted_on": "2017-09-14",
|
|
999
|
+
"posted_on_trust_code": 7,
|
|
1000
|
+
"url": "https://techcrunch.com/2017/09/14/facebooks-generation-of-jew-hater-and-other-advertising-categories-prompts-system-inspection/",
|
|
1001
|
+
"created_at": 1505480648,
|
|
1002
|
+
"updated_at": 1505481033
|
|
1003
|
+
}
|
|
1004
|
+
},
|
|
1005
|
+
{
|
|
1006
|
+
"type": "News",
|
|
1007
|
+
"uuid": "a0f86e6ee56735798a8dce1ba71d95e4",
|
|
1008
|
+
"properties":
|
|
1009
|
+
{
|
|
1010
|
+
"title": "Facebook Messenger hits 1.3 billion monthly users, up from 1.2B in April",
|
|
1011
|
+
"author": "Josh Constine",
|
|
1012
|
+
"posted_on": "2017-09-14",
|
|
1013
|
+
"posted_on_trust_code": 7,
|
|
1014
|
+
"url": "https://techcrunch.com/2017/09/14/facebook-messenger-1-3-billion/",
|
|
1015
|
+
"created_at": 1505411316,
|
|
1016
|
+
"updated_at": 1505411433
|
|
1017
|
+
}
|
|
1018
|
+
},
|
|
1019
|
+
{
|
|
1020
|
+
"type": "News",
|
|
1021
|
+
"uuid": "fe4d9af31a829d8a9a89a04b0e44f52a",
|
|
1022
|
+
"properties":
|
|
1023
|
+
{
|
|
1024
|
+
"title": "Facebook bans monetization of violence, porn, drugs, hate",
|
|
1025
|
+
"author": "Josh Constine",
|
|
1026
|
+
"posted_on": "2017-09-13",
|
|
1027
|
+
"posted_on_trust_code": 7,
|
|
1028
|
+
"url": "https://techcrunch.com/2017/09/13/facebook-monetization-2/",
|
|
1029
|
+
"created_at": 1505315236,
|
|
1030
|
+
"updated_at": 1505315287
|
|
1031
|
+
}
|
|
1032
|
+
},
|
|
1033
|
+
{
|
|
1034
|
+
"type": "News",
|
|
1035
|
+
"uuid": "1feb567b1beff0ee97c851a8b0616c66",
|
|
1036
|
+
"properties":
|
|
1037
|
+
{
|
|
1038
|
+
"title": "Facebook’s Eddie O’Neil takes over Platform as Deb Liu grows Marketplace",
|
|
1039
|
+
"author": "Josh Constine",
|
|
1040
|
+
"posted_on": "2017-09-13",
|
|
1041
|
+
"posted_on_trust_code": 7,
|
|
1042
|
+
"url": "https://techcrunch.com/2017/09/13/facebook-platform/",
|
|
1043
|
+
"created_at": 1505335098,
|
|
1044
|
+
"updated_at": 1505335340
|
|
1045
|
+
}
|
|
1046
|
+
},
|
|
1047
|
+
{
|
|
1048
|
+
"type": "News",
|
|
1049
|
+
"uuid": "ade05986d57701f3ad68eb1c071756a5",
|
|
1050
|
+
"properties":
|
|
1051
|
+
{
|
|
1052
|
+
"title": "Facebook tests Bonfire group video chat as app and in Messenger",
|
|
1053
|
+
"author": "Sarah Perez",
|
|
1054
|
+
"posted_on": "2017-09-13",
|
|
1055
|
+
"posted_on_trust_code": 7,
|
|
1056
|
+
"url": "https://techcrunch.com/2017/09/13/facebook-tries-its-hand-at-group-video-chat-with-bonfire/",
|
|
1057
|
+
"created_at": 1505316598,
|
|
1058
|
+
"updated_at": 1505316598
|
|
1059
|
+
}
|
|
1060
|
+
},
|
|
1061
|
+
{
|
|
1062
|
+
"type": "News",
|
|
1063
|
+
"uuid": "36215269270b699e4ae01e0cb8a8ebf2",
|
|
1064
|
+
"properties":
|
|
1065
|
+
{
|
|
1066
|
+
"title": "Facebook has pulled Instant Articles off Messenger",
|
|
1067
|
+
"author": "Ingrid Lunden",
|
|
1068
|
+
"posted_on": "2017-09-12",
|
|
1069
|
+
"posted_on_trust_code": 7,
|
|
1070
|
+
"url": "https://techcrunch.com/2017/09/12/facebook-has-pulled-instant-articles-off-messenger/",
|
|
1071
|
+
"created_at": 1505221695,
|
|
1072
|
+
"updated_at": 1505221744
|
|
1073
|
+
}
|
|
1074
|
+
},
|
|
1075
|
+
{
|
|
1076
|
+
"type": "News",
|
|
1077
|
+
"uuid": "d77c7d37db661b370df492a35ad3a082",
|
|
1078
|
+
"properties":
|
|
1079
|
+
{
|
|
1080
|
+
"title": "Facebook is testing a feature for mentorships between users",
|
|
1081
|
+
"author": "Ingrid Lunden",
|
|
1082
|
+
"posted_on": "2017-09-12",
|
|
1083
|
+
"posted_on_trust_code": 7,
|
|
1084
|
+
"url": "https://techcrunch.com/2017/09/11/facebook-is-testing-a-feature-for-mentorships-between-users/",
|
|
1085
|
+
"created_at": 1505218122,
|
|
1086
|
+
"updated_at": 1505218122
|
|
1087
|
+
}
|
|
1088
|
+
},
|
|
1089
|
+
{
|
|
1090
|
+
"type": "News",
|
|
1091
|
+
"uuid": "a722113863f65b2c718c5d0c3173a325",
|
|
1092
|
+
"properties":
|
|
1093
|
+
{
|
|
1094
|
+
"title": "Facebook brings its Canvas ad format to Instagram Stories",
|
|
1095
|
+
"author": "Anthony Ha",
|
|
1096
|
+
"posted_on": "2017-09-12",
|
|
1097
|
+
"posted_on_trust_code": 7,
|
|
1098
|
+
"url": "https://techcrunch.com/2017/09/12/facebook-brings-its-canvas-ad-format-to-instagram-stories/",
|
|
1099
|
+
"created_at": 1505232528,
|
|
1100
|
+
"updated_at": 1505232622
|
|
1101
|
+
}
|
|
1102
|
+
},
|
|
1103
|
+
{
|
|
1104
|
+
"type": "News",
|
|
1105
|
+
"uuid": "fe3163d55a3d690d17f7a7e7b9d9e477",
|
|
1106
|
+
"properties":
|
|
1107
|
+
{
|
|
1108
|
+
"title": "Facebook tests pre-loaded ‘Instant Videos’",
|
|
1109
|
+
"author": "Josh Constine",
|
|
1110
|
+
"posted_on": "2017-09-11",
|
|
1111
|
+
"posted_on_trust_code": 7,
|
|
1112
|
+
"url": "https://techcrunch.com/2017/09/11/facebook-instant-video/",
|
|
1113
|
+
"created_at": 1505220902,
|
|
1114
|
+
"updated_at": 1505220902
|
|
1115
|
+
}
|
|
1116
|
+
},
|
|
1117
|
+
{
|
|
1118
|
+
"type": "News",
|
|
1119
|
+
"uuid": "bb84743fdcbbdde524f4db22b72bf6f1",
|
|
1120
|
+
"properties":
|
|
1121
|
+
{
|
|
1122
|
+
"title": "Facebook fined €1.2M for privacy violations in Spain",
|
|
1123
|
+
"author": "Natasha Lomas",
|
|
1124
|
+
"posted_on": "2017-09-11",
|
|
1125
|
+
"posted_on_trust_code": 7,
|
|
1126
|
+
"url": "https://techcrunch.com/2017/09/11/facebook-fined-e1-2m-for-privacy-violations-in-spain/",
|
|
1127
|
+
"created_at": 1505141630,
|
|
1128
|
+
"updated_at": 1505141630
|
|
1129
|
+
}
|
|
1130
|
+
},
|
|
1131
|
+
{
|
|
1132
|
+
"type": "News",
|
|
1133
|
+
"uuid": "872cec4b80313aa41b1e422acee3b751",
|
|
1134
|
+
"properties":
|
|
1135
|
+
{
|
|
1136
|
+
"title": "Facebook plans to spend up to $1B on original shows in 2018",
|
|
1137
|
+
"author": "Darrell Etherington",
|
|
1138
|
+
"posted_on": "2017-09-08",
|
|
1139
|
+
"posted_on_trust_code": 7,
|
|
1140
|
+
"url": "https://techcrunch.com/2017/09/08/facebook-plans-to-spend-up-to-1b-on-original-shows-in-2018/",
|
|
1141
|
+
"created_at": 1504884182,
|
|
1142
|
+
"updated_at": 1504884182
|
|
1143
|
+
}
|
|
1144
|
+
},
|
|
1145
|
+
{
|
|
1146
|
+
"type": "News",
|
|
1147
|
+
"uuid": "e9fb570e892d10929850ffef33a15a23",
|
|
1148
|
+
"properties":
|
|
1149
|
+
{
|
|
1150
|
+
"title": "Facebook adds a dedicated ‘Movies’ section offering showtimes and ticket sales",
|
|
1151
|
+
"author": "Sarah Perez",
|
|
1152
|
+
"posted_on": "2017-09-08",
|
|
1153
|
+
"posted_on_trust_code": 7,
|
|
1154
|
+
"url": "https://techcrunch.com/2017/09/08/facebook-adds-a-dedicated-movies-section-offering-showtimes-and-ticket-sales/",
|
|
1155
|
+
"created_at": 1505135468,
|
|
1156
|
+
"updated_at": 1505135468
|
|
1157
|
+
}
|
|
1158
|
+
},
|
|
1159
|
+
{
|
|
1160
|
+
"type": "News",
|
|
1161
|
+
"uuid": "53298eb13da84551e9c47d19d504041b",
|
|
1162
|
+
"properties":
|
|
1163
|
+
{
|
|
1164
|
+
"title": "Facebook is testing features to help you make new friends",
|
|
1165
|
+
"author": "Lucas Matney",
|
|
1166
|
+
"posted_on": "2017-09-08",
|
|
1167
|
+
"posted_on_trust_code": 7,
|
|
1168
|
+
"url": "https://techcrunch.com/2017/09/07/facebook-is-testing-features-to-help-you-make-new-friends/",
|
|
1169
|
+
"created_at": 1504874110,
|
|
1170
|
+
"updated_at": 1504874110
|
|
1171
|
+
}
|
|
1172
|
+
},
|
|
1173
|
+
{
|
|
1174
|
+
"type": "News",
|
|
1175
|
+
"uuid": "db2cc38b6e1515e0591dce7b3b1c93a6",
|
|
1176
|
+
"properties":
|
|
1177
|
+
{
|
|
1178
|
+
"title": "Facebook and Microsoft collaborate to simplify conversions from PyTorch to Caffe2",
|
|
1179
|
+
"author": "John Mannes",
|
|
1180
|
+
"posted_on": "2017-09-07",
|
|
1181
|
+
"posted_on_trust_code": 7,
|
|
1182
|
+
"url": "https://techcrunch.com/2017/09/07/facebook-and-microsoft-collaborate-to-simplify-conversions-from-pytorch-to-caffe2/",
|
|
1183
|
+
"created_at": 1504806137,
|
|
1184
|
+
"updated_at": 1504807781
|
|
1185
|
+
}
|
|
1186
|
+
},
|
|
1187
|
+
{
|
|
1188
|
+
"type": "News",
|
|
1189
|
+
"uuid": "f3d47ef12ccabf7db2ce18dd89aa91f0",
|
|
1190
|
+
"properties":
|
|
1191
|
+
{
|
|
1192
|
+
"title": "Instagram test feature lets users share Stories straight to Facebook",
|
|
1193
|
+
"author": "Taylor Hatmaker",
|
|
1194
|
+
"posted_on": "2017-09-06",
|
|
1195
|
+
"posted_on_trust_code": 7,
|
|
1196
|
+
"url": "https://techcrunch.com/2017/09/06/instagram-stories-on-facebook/",
|
|
1197
|
+
"created_at": 1504792005,
|
|
1198
|
+
"updated_at": 1504792011
|
|
1199
|
+
}
|
|
1200
|
+
},
|
|
1201
|
+
{
|
|
1202
|
+
"type": "News",
|
|
1203
|
+
"uuid": "7caed796343616d54e46d3bc103f456e",
|
|
1204
|
+
"properties":
|
|
1205
|
+
{
|
|
1206
|
+
"title": "Facebook sold more than $100,000 in political ads to a Russian company during the 2016 election",
|
|
1207
|
+
"author": "Taylor Hatmaker",
|
|
1208
|
+
"posted_on": "2017-09-06",
|
|
1209
|
+
"posted_on_trust_code": 7,
|
|
1210
|
+
"url": "https://techcrunch.com/2017/09/06/facebook-russia-ads-election/",
|
|
1211
|
+
"created_at": 1504791116,
|
|
1212
|
+
"updated_at": 1504791195
|
|
1213
|
+
}
|
|
1214
|
+
},
|
|
1215
|
+
{
|
|
1216
|
+
"type": "News",
|
|
1217
|
+
"uuid": "d42a6a9e54c31236b029f41aa27fada8",
|
|
1218
|
+
"properties":
|
|
1219
|
+
{
|
|
1220
|
+
"title": "Facebook Watch original video tab launches to all U.S. users",
|
|
1221
|
+
"author": "Josh Constine",
|
|
1222
|
+
"posted_on": "2017-09-05",
|
|
1223
|
+
"posted_on_trust_code": 7,
|
|
1224
|
+
"url": "https://techcrunch.com/2017/09/05/facebook-watch-tab/",
|
|
1225
|
+
"created_at": 1504644103,
|
|
1226
|
+
"updated_at": 1504644103
|
|
1227
|
+
}
|
|
1228
|
+
},
|
|
1229
|
+
{
|
|
1230
|
+
"type": "News",
|
|
1231
|
+
"uuid": "9c99dd27f4373b13263e4d6b1f476dbe",
|
|
1232
|
+
"properties":
|
|
1233
|
+
{
|
|
1234
|
+
"title": "Facebook has a way to correct your crooked 360 photos",
|
|
1235
|
+
"author": "John Mannes",
|
|
1236
|
+
"posted_on": "2017-08-31",
|
|
1237
|
+
"posted_on_trust_code": 7,
|
|
1238
|
+
"url": "https://techcrunch.com/2017/08/31/facebook-has-a-way-to-correct-your-crooked-360-photos/",
|
|
1239
|
+
"created_at": 1504201431,
|
|
1240
|
+
"updated_at": 1504201431
|
|
1241
|
+
}
|
|
1242
|
+
},
|
|
1243
|
+
{
|
|
1244
|
+
"type": "News",
|
|
1245
|
+
"uuid": "0d44382ed7a93684974e7907d4609f15",
|
|
1246
|
+
"properties":
|
|
1247
|
+
{
|
|
1248
|
+
"title": "Facebook to open source LogDevice for storing logs from distributed data centers",
|
|
1249
|
+
"author": "John Mannes",
|
|
1250
|
+
"posted_on": "2017-08-31",
|
|
1251
|
+
"posted_on_trust_code": 7,
|
|
1252
|
+
"url": "https://techcrunch.com/2017/08/31/facebook-to-open-source-logdevice-for-storing-logs-from-distributed-data-centers/",
|
|
1253
|
+
"created_at": 1504201391,
|
|
1254
|
+
"updated_at": 1504201391
|
|
1255
|
+
}
|
|
1256
|
+
},
|
|
1257
|
+
{
|
|
1258
|
+
"type": "News",
|
|
1259
|
+
"uuid": "0c96ab46d3068712b6c50d3fd38d715e",
|
|
1260
|
+
"properties":
|
|
1261
|
+
{
|
|
1262
|
+
"title": "Facebook’s new Watch video hub rolls out to U.S. users",
|
|
1263
|
+
"author": "Taylor Hatmaker",
|
|
1264
|
+
"posted_on": "2017-08-31",
|
|
1265
|
+
"posted_on_trust_code": 7,
|
|
1266
|
+
"url": "https://techcrunch.com/2017/08/31/facebook-watch-launch/",
|
|
1267
|
+
"created_at": 1504208144,
|
|
1268
|
+
"updated_at": 1504208144
|
|
1269
|
+
}
|
|
1270
|
+
},
|
|
1271
|
+
{
|
|
1272
|
+
"type": "News",
|
|
1273
|
+
"uuid": "c99c6524f40dfc3c6011ba0c48f5f94f",
|
|
1274
|
+
"properties":
|
|
1275
|
+
{
|
|
1276
|
+
"title": "Facebook will match Harvey relief donations up to $1 million",
|
|
1277
|
+
"author": "Taylor Hatmaker",
|
|
1278
|
+
"posted_on": "2017-08-29",
|
|
1279
|
+
"posted_on_trust_code": 7,
|
|
1280
|
+
"url": "https://techcrunch.com/2017/08/29/facebook-hurricane-harvey-fundraising/",
|
|
1281
|
+
"created_at": 1504030064,
|
|
1282
|
+
"updated_at": 1504030064
|
|
1283
|
+
}
|
|
1284
|
+
},
|
|
1285
|
+
{
|
|
1286
|
+
"type": "News",
|
|
1287
|
+
"uuid": "241ce9e03d42455821dbc49523dd0439",
|
|
1288
|
+
"properties":
|
|
1289
|
+
{
|
|
1290
|
+
"title": "How tech companies are helping Texans affected by Hurricane Harvey",
|
|
1291
|
+
"author": "Taylor Hatmaker",
|
|
1292
|
+
"posted_on": "2017-08-29",
|
|
1293
|
+
"posted_on_trust_code": 7,
|
|
1294
|
+
"url": "https://techcrunch.com/2017/08/29/tech-companies-harvey-houston-fundraising/",
|
|
1295
|
+
"created_at": 1504103079,
|
|
1296
|
+
"updated_at": 1504104942
|
|
1297
|
+
}
|
|
1298
|
+
},
|
|
1299
|
+
{
|
|
1300
|
+
"type": "News",
|
|
1301
|
+
"uuid": "cb04e7da0f28390c472b9608bd2fa538",
|
|
1302
|
+
"properties":
|
|
1303
|
+
{
|
|
1304
|
+
"title": "Facebook says Pages that regularly share false news won’t be able to buy ads",
|
|
1305
|
+
"author": "Anthony Ha",
|
|
1306
|
+
"posted_on": "2017-08-28",
|
|
1307
|
+
"posted_on_trust_code": 7,
|
|
1308
|
+
"url": "https://techcrunch.com/2017/08/28/facebook-fake-news-ads/",
|
|
1309
|
+
"created_at": 1504024685,
|
|
1310
|
+
"updated_at": 1504024685
|
|
1311
|
+
}
|
|
1312
|
+
},
|
|
1313
|
+
{
|
|
1314
|
+
"type": "News",
|
|
1315
|
+
"uuid": "1b8457eb49d6b9d952ea42347cf761af",
|
|
1316
|
+
"properties":
|
|
1317
|
+
{
|
|
1318
|
+
"title": "Facebook faces another moderation scandal over migrant torture videos",
|
|
1319
|
+
"author": "Natasha Lomas",
|
|
1320
|
+
"posted_on": "2017-08-25",
|
|
1321
|
+
"posted_on_trust_code": 7,
|
|
1322
|
+
"url": "https://techcrunch.com/2017/08/25/facebook-faces-another-moderation-scandal-over-migrant-torture-videos/",
|
|
1323
|
+
"created_at": 1503672592,
|
|
1324
|
+
"updated_at": 1503672592
|
|
1325
|
+
}
|
|
1326
|
+
},
|
|
1327
|
+
{
|
|
1328
|
+
"type": "News",
|
|
1329
|
+
"uuid": "52a7763c2319678dccd62c3192c29b47",
|
|
1330
|
+
"properties":
|
|
1331
|
+
{
|
|
1332
|
+
"title": "Facebook hires former NYT public editor Liz Spayd to consult on transparency",
|
|
1333
|
+
"author": "Anthony Ha",
|
|
1334
|
+
"posted_on": "2017-08-25",
|
|
1335
|
+
"posted_on_trust_code": 7,
|
|
1336
|
+
"url": "https://techcrunch.com/2017/08/25/facebook-hires-liz-spayd/",
|
|
1337
|
+
"created_at": 1504009059,
|
|
1338
|
+
"updated_at": 1504009928
|
|
1339
|
+
}
|
|
1340
|
+
},
|
|
1341
|
+
{
|
|
1342
|
+
"type": "News",
|
|
1343
|
+
"uuid": "ee34cac69e4aa341b0a380702a0bf8c3",
|
|
1344
|
+
"properties":
|
|
1345
|
+
{
|
|
1346
|
+
"title": "Facebook adds new ways to revisit your memories and milestones",
|
|
1347
|
+
"author": "Sarah Perez",
|
|
1348
|
+
"posted_on": "2017-08-25",
|
|
1349
|
+
"posted_on_trust_code": 7,
|
|
1350
|
+
"url": "https://techcrunch.com/2017/08/25/facebook-adds-new-ways-to-revisit-your-memories-and-milestones/",
|
|
1351
|
+
"created_at": 1503671179,
|
|
1352
|
+
"updated_at": 1503671179
|
|
1353
|
+
}
|
|
1354
|
+
},
|
|
1355
|
+
{
|
|
1356
|
+
"type": "News",
|
|
1357
|
+
"uuid": "74ecb6620dbc87f593559e7700ed0a39",
|
|
1358
|
+
"properties":
|
|
1359
|
+
{
|
|
1360
|
+
"title": "Facebook’s Andrew Bosworth is taking over the company’s consumer hardware efforts",
|
|
1361
|
+
"author": "Lucas Matney",
|
|
1362
|
+
"posted_on": "2017-08-24",
|
|
1363
|
+
"posted_on_trust_code": 7,
|
|
1364
|
+
"url": "https://techcrunch.com/2017/08/23/facebooks-andrew-bosworth-is-taking-over-the-companys-consumer-hardware-efforts/",
|
|
1365
|
+
"created_at": 1503579637,
|
|
1366
|
+
"updated_at": 1503580399
|
|
1367
|
+
}
|
|
1368
|
+
},
|
|
1369
|
+
{
|
|
1370
|
+
"type": "News",
|
|
1371
|
+
"uuid": "aacf572555f0790e38805332412e7eac",
|
|
1372
|
+
"properties":
|
|
1373
|
+
{
|
|
1374
|
+
"title": "Facebook now lets you take 360 photos in-app, use them as Cover Photos",
|
|
1375
|
+
"author": "Darrell Etherington",
|
|
1376
|
+
"posted_on": "2017-08-23",
|
|
1377
|
+
"posted_on_trust_code": 7,
|
|
1378
|
+
"url": "https://techcrunch.com/2017/08/23/facebook-now-lets-you-take-360-photos-in-app-use-them-as-cover-photos/",
|
|
1379
|
+
"created_at": 1503513477,
|
|
1380
|
+
"updated_at": 1503513477
|
|
1381
|
+
}
|
|
1382
|
+
},
|
|
1383
|
+
{
|
|
1384
|
+
"type": "News",
|
|
1385
|
+
"uuid": "df56641465dfeb0f8734539b62078d2e",
|
|
1386
|
+
"properties":
|
|
1387
|
+
{
|
|
1388
|
+
"title": "Facebook will live stream over a dozen college football games this year",
|
|
1389
|
+
"author": "Sarah Perez",
|
|
1390
|
+
"posted_on": "2017-08-23",
|
|
1391
|
+
"posted_on_trust_code": 7,
|
|
1392
|
+
"url": "https://techcrunch.com/2017/08/23/facebook-will-live-stream-over-a-dozen-college-football-games-this-year/",
|
|
1393
|
+
"created_at": 1503511316,
|
|
1394
|
+
"updated_at": 1503511316
|
|
1395
|
+
}
|
|
1396
|
+
},
|
|
1397
|
+
{
|
|
1398
|
+
"type": "News",
|
|
1399
|
+
"uuid": "b4bd58021ce601e35ce530140532acaa",
|
|
1400
|
+
"properties":
|
|
1401
|
+
{
|
|
1402
|
+
"title": "A look back in IPO: Facebook’s trailing profit and mobile intrigue",
|
|
1403
|
+
"author": "Alex Wilhelm",
|
|
1404
|
+
"posted_on": "2017-08-22",
|
|
1405
|
+
"posted_on_trust_code": 7,
|
|
1406
|
+
"url": "https://techcrunch.com/2017/08/22/a-look-back-in-ipo-facebooks-trailing-profit-and-mobile-intrigue/",
|
|
1407
|
+
"created_at": 1503428618,
|
|
1408
|
+
"updated_at": 1503428618
|
|
1409
|
+
}
|
|
1410
|
+
},
|
|
1411
|
+
{
|
|
1412
|
+
"type": "News",
|
|
1413
|
+
"uuid": "36474c1cd9acfc2717e1974fbc7f1bdb",
|
|
1414
|
+
"properties":
|
|
1415
|
+
{
|
|
1416
|
+
"title": "Teens favoring Snapchat and Instagram over Facebook, says eMarketer",
|
|
1417
|
+
"author": "Natasha Lomas",
|
|
1418
|
+
"posted_on": "2017-08-22",
|
|
1419
|
+
"posted_on_trust_code": 7,
|
|
1420
|
+
"url": "https://techcrunch.com/2017/08/22/teens-favoring-snapchat-and-instagram-over-facebook-says-emarketer/",
|
|
1421
|
+
"created_at": 1503426171,
|
|
1422
|
+
"updated_at": 1503426224
|
|
1423
|
+
}
|
|
1424
|
+
}]
|
|
1425
|
+
}
|
|
1426
|
+
}
|