lita-onewheel-youtube 0.0.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: ea904bde105d9ce5c77df4d2c1ad462a314d6897
4
+ data.tar.gz: f57a50948eb8eacd37352c1a780111471e154bf3
5
+ SHA512:
6
+ metadata.gz: 9f22584be61bec09501b59e53a20ada9d82acb036bd751cf57ee807ac7233051d5a38cd695a85f972f58910852096b2fca6eda1e7d7e21f1b1d9424f13099eae
7
+ data.tar.gz: 94da8c7e0c31d93a46a8c7b16bd4c2e9d750cbe43222989e3ca692c68f756d010f300d55d8d8f91f3ae8ac69a0fc551f1c41876239f6c98dd5abf6d921ff0994
@@ -0,0 +1,19 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
18
+ .idea
19
+ lita_config.rb
@@ -0,0 +1,9 @@
1
+ language: ruby
2
+ rvm:
3
+ - 2.2.5
4
+ - 2.3.1
5
+ script: bundle exec rake
6
+ before_install:
7
+ - gem update --system
8
+ services:
9
+ - redis-server
data/Gemfile ADDED
@@ -0,0 +1,3 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gemspec
@@ -0,0 +1,35 @@
1
+ lita-onewheel-youtube
2
+ --------------------
3
+
4
+ [![Build Status](https://travis-ci.org/onewheelskyward/lita-onewheel-youtube.png?branch=master)](https://travis-ci.org/onewheelskyward/lita-onewheel-youtube)
5
+ [![Coverage Status](https://coveralls.io/repos/onewheelskyward/lita-onewheel-youtube/badge.png)](https://coveralls.io/r/onewheelskyward/lita-onewheel-youtube)
6
+
7
+ Search the youtubes for the videos.
8
+
9
+ Installation
10
+ ------------
11
+ Add lita-onewheel-youtube to your Lita instance's Gemfile:
12
+
13
+ ``` ruby
14
+ gem "lita-onewheel-youtube"
15
+ ```
16
+
17
+ Configuration
18
+ -------------
19
+
20
+ Lita.configure do |config|
21
+ config.handlers.onewheel_images.custom_search_engine_id = '123:xyz'
22
+ config.handlers.onewheel_images.google_api_key = 'A1b2'
23
+ config.handlers.onewheel_images.safe_search = 'medium' # This is the default setting. Use 'off' at your own risk.
24
+ end
25
+
26
+ Usage
27
+ -----
28
+
29
+ Well, firstly, Google's API explorer can be a little tricky.
30
+
31
+
32
+ Going Forward
33
+ -------------
34
+
35
+ I'm going to implement postgres and make sure I can track everything I want to track. Testing the limits of the api calls since I get so few.
@@ -0,0 +1,6 @@
1
+ require 'bundler/gem_tasks'
2
+ require 'rspec/core/rake_task'
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task default: :spec
@@ -0,0 +1,3 @@
1
+ require 'lita'
2
+
3
+ require 'lita/handlers/onewheel_youtube'
@@ -0,0 +1,25 @@
1
+ require 'onewheel-google'
2
+
3
+ module Lita
4
+ module Handlers
5
+ class OnewheelYoutube < Handler
6
+ config :custom_search_engine_id
7
+ config :google_api_key
8
+ config :safe_search, required: false, default: 'medium'
9
+
10
+ route /^youtube\s+(.*)$/, :search, command: true
11
+
12
+ def search(response)
13
+ query = response.matches[0][0]
14
+ result = ::OnewheelGoogle::search('site:youtube.com ' + query, config.custom_search_engine_id, config.google_api_key, config.safe_search)
15
+ first_item = result['items'][0]
16
+ video_id = first_item['pagemap']['videoobject'][0]['videoid']
17
+ video_link = "http://y2u.be/#{video_id}"
18
+ reply = "#{video_link} #{first_item['title']}".sub(/\n/, ' ')[0..500]
19
+ response.reply reply
20
+ end
21
+
22
+ Lita.register_handler(self)
23
+ end
24
+ end
25
+ end
@@ -0,0 +1,28 @@
1
+ Gem::Specification.new do |spec|
2
+ spec.name = 'lita-onewheel-youtube'
3
+ spec.version = '0.0.0'
4
+ spec.authors = ['Andrew Kreps']
5
+ spec.email = ['andrew.kreps@gmail.com']
6
+ spec.description = 'An implementation of Google Custom Search Engine for searching Youtube in chat.'
7
+ spec.summary = 'CSE Details to follow'
8
+ spec.homepage = 'https://github.com/onewheelskyward/lita-onewheel-youtube'
9
+ spec.license = 'MIT'
10
+ spec.metadata = { 'lita_plugin_type' => 'handler' }
11
+
12
+ spec.files = `git ls-files`.split($/)
13
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
14
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
15
+ spec.require_paths = ['lib']
16
+
17
+ spec.add_runtime_dependency 'lita', '~> 4'
18
+ spec.add_runtime_dependency 'rest-client', '~> 1.8'
19
+ spec.add_runtime_dependency 'addressable', '~> 2.4'
20
+ spec.add_runtime_dependency 'onewheel-google', '~> 1'
21
+
22
+ spec.add_development_dependency 'bundler', '~> 1.3'
23
+ spec.add_development_dependency 'rake', '~> 10.4'
24
+ spec.add_development_dependency 'rack-test', '~> 0.6'
25
+ spec.add_development_dependency 'rspec', '~> 3.3'
26
+ spec.add_development_dependency 'simplecov', '~> 0.10'
27
+ spec.add_development_dependency 'coveralls', '~> 0.8'
28
+ end
@@ -0,0 +1,1084 @@
1
+ {
2
+ "kind": "customsearch#search",
3
+ "url": {
4
+ "type": "application/json",
5
+ "template": "https://www.googleapis.com/customsearch/v1?q={searchTerms}&num={count?}&start={startIndex?}&lr={language?}&safe={safe?}&cx={cx?}&cref={cref?}&sort={sort?}&filter={filter?}&gl={gl?}&cr={cr?}&googlehost={googleHost?}&c2coff={disableCnTwTranslation?}&hq={hq?}&hl={hl?}&siteSearch={siteSearch?}&siteSearchFilter={siteSearchFilter?}&exactTerms={exactTerms?}&excludeTerms={excludeTerms?}&linkSite={linkSite?}&orTerms={orTerms?}&relatedSite={relatedSite?}&dateRestrict={dateRestrict?}&lowRange={lowRange?}&highRange={highRange?}&searchType={searchType}&fileType={fileType?}&rights={rights?}&imgSize={imgSize?}&imgType={imgType?}&imgColorType={imgColorType?}&imgDominantColor={imgDominantColor?}&alt=json"
6
+ },
7
+ "queries": {
8
+ "request": [
9
+ {
10
+ "title": "Google Custom Search - site:youtube.com sledgehammer",
11
+ "totalResults": "248000",
12
+ "searchTerms": "site:youtube.com sledgehammer",
13
+ "count": 10,
14
+ "startIndex": 1,
15
+ "inputEncoding": "utf8",
16
+ "outputEncoding": "utf8",
17
+ "safe": "medium",
18
+ "cx": "016450909327860943906:3a3e35xbkzu"
19
+ }
20
+ ],
21
+ "nextPage": [
22
+ {
23
+ "title": "Google Custom Search - site:youtube.com sledgehammer",
24
+ "totalResults": "248000",
25
+ "searchTerms": "site:youtube.com sledgehammer",
26
+ "count": 10,
27
+ "startIndex": 11,
28
+ "inputEncoding": "utf8",
29
+ "outputEncoding": "utf8",
30
+ "safe": "medium",
31
+ "cx": "016450909327860943906:3a3e35xbkzu"
32
+ }
33
+ ]
34
+ },
35
+ "context": {
36
+ "title": "Google"
37
+ },
38
+ "searchInformation": {
39
+ "searchTime": 0.437575,
40
+ "formattedSearchTime": "0.44",
41
+ "totalResults": "248000",
42
+ "formattedTotalResults": "248,000"
43
+ },
44
+ "items": [
45
+ {
46
+ "kind": "customsearch#result",
47
+ "title": "Fifth Harmony - Sledgehammer - YouTube",
48
+ "htmlTitle": "Fifth Harmony - <b>Sledgehammer</b> - YouTube",
49
+ "link": "https://www.youtube.com/watch?v=gCJ3rmiZFr8",
50
+ "displayLink": "www.youtube.com",
51
+ "snippet": "Nov 25, 2014 ... Download the Reflection album at iTunes: http://smarturl.it/RFLT Download the \nReflection album at Amazon: http://smarturl.it/5h_Rflt Spotify: ...",
52
+ "htmlSnippet": "Nov 25, 2014 <b>...</b> Download the Reflection album at iTunes: http://smarturl.it/RFLT Download the <br>\nReflection album at Amazon: http://smarturl.it/5h_Rflt Spotify:&nbsp;...",
53
+ "cacheId": "CnJYMEJrk3IJ",
54
+ "formattedUrl": "https://www.youtube.com/watch?v=gCJ3rmiZFr8",
55
+ "htmlFormattedUrl": "https://www.youtube.com/watch?v=gCJ3rmiZFr8",
56
+ "pagemap": {
57
+ "cse_thumbnail": [
58
+ {
59
+ "width": "300",
60
+ "height": "168",
61
+ "src": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcT-PqsrpxIMSGg31d7CpylOK4jB0sszrz4QneJ16TpGaLGfHTZrmt0p6V54"
62
+ }
63
+ ],
64
+ "imageobject": [
65
+ {
66
+ "url": "https://i.ytimg.com/vi/gCJ3rmiZFr8/maxresdefault.jpg",
67
+ "width": "1280",
68
+ "height": "720"
69
+ }
70
+ ],
71
+ "person": [
72
+ {
73
+ "url": "http://www.youtube.com/user/FifthHarmonyVEVO"
74
+ },
75
+ {
76
+ "url": "https://plus.google.com/115158801521521788945"
77
+ }
78
+ ],
79
+ "metatags": [
80
+ {
81
+ "title": "Fifth Harmony - Sledgehammer",
82
+ "theme-color": "#e62117",
83
+ "og:site_name": "YouTube",
84
+ "og:url": "https://www.youtube.com/watch?v=gCJ3rmiZFr8",
85
+ "og:title": "Fifth Harmony - Sledgehammer",
86
+ "og:image": "https://i.ytimg.com/vi/gCJ3rmiZFr8/maxresdefault.jpg",
87
+ "og:description": "Download the Reflection album at iTunes: http://smarturl.it/RFLT Download the Reflection album at Amazon: http://smarturl.it/5h_Rflt Spotify: http://smarturl...",
88
+ "al:ios:app_store_id": "544007664",
89
+ "al:ios:app_name": "YouTube",
90
+ "al:ios:url": "vnd.youtube://www.youtube.com/watch?v=gCJ3rmiZFr8&feature=applinks",
91
+ "al:android:url": "vnd.youtube://www.youtube.com/watch?v=gCJ3rmiZFr8&feature=applinks",
92
+ "al:android:app_name": "YouTube",
93
+ "al:android:package": "com.google.android.youtube",
94
+ "al:web:url": "https://www.youtube.com/watch?v=gCJ3rmiZFr8&feature=applinks",
95
+ "og:type": "video",
96
+ "og:video:url": "https://www.youtube.com/embed/gCJ3rmiZFr8",
97
+ "og:video:secure_url": "https://www.youtube.com/embed/gCJ3rmiZFr8",
98
+ "og:video:type": "text/html",
99
+ "og:video:width": "1280",
100
+ "og:video:height": "720",
101
+ "og:video:tag": "Pop",
102
+ "fb:app_id": "87741124305",
103
+ "twitter:card": "player",
104
+ "twitter:site": "@youtube",
105
+ "twitter:url": "https://www.youtube.com/watch?v=gCJ3rmiZFr8",
106
+ "twitter:title": "Fifth Harmony - Sledgehammer",
107
+ "twitter:description": "Download the Reflection album at iTunes: http://smarturl.it/RFLT Download the Reflection album at Amazon: http://smarturl.it/5h_Rflt Spotify: http://smarturl...",
108
+ "twitter:image": "https://i.ytimg.com/vi/gCJ3rmiZFr8/maxresdefault.jpg",
109
+ "twitter:app:name:iphone": "YouTube",
110
+ "twitter:app:id:iphone": "544007664",
111
+ "twitter:app:name:ipad": "YouTube",
112
+ "twitter:app:id:ipad": "544007664",
113
+ "twitter:app:url:iphone": "vnd.youtube://www.youtube.com/watch?v=gCJ3rmiZFr8&feature=applinks",
114
+ "twitter:app:url:ipad": "vnd.youtube://www.youtube.com/watch?v=gCJ3rmiZFr8&feature=applinks",
115
+ "twitter:app:name:googleplay": "YouTube",
116
+ "twitter:app:id:googleplay": "com.google.android.youtube",
117
+ "twitter:app:url:googleplay": "https://www.youtube.com/watch?v=gCJ3rmiZFr8",
118
+ "twitter:player": "https://www.youtube.com/embed/gCJ3rmiZFr8",
119
+ "twitter:player:width": "1280",
120
+ "twitter:player:height": "720"
121
+ }
122
+ ],
123
+ "videoobject": [
124
+ {
125
+ "url": "https://www.youtube.com/watch?v=gCJ3rmiZFr8",
126
+ "name": "Fifth Harmony - Sledgehammer",
127
+ "description": "Download the Reflection album at iTunes: http://smarturl.it/RFLT Download the Reflection album at Amazon: http://smarturl.it/5h_Rflt Spotify: http://smarturl...",
128
+ "paid": "False",
129
+ "channelid": "UC09d82usokACH1z5YeKnfiA",
130
+ "videoid": "gCJ3rmiZFr8",
131
+ "duration": "PT3M52S",
132
+ "unlisted": "False",
133
+ "thumbnailurl": "https://i.ytimg.com/vi/gCJ3rmiZFr8/maxresdefault.jpg",
134
+ "embedurl": "https://www.youtube.com/embed/gCJ3rmiZFr8",
135
+ "playertype": "HTML5 Flash",
136
+ "width": "1280",
137
+ "height": "720",
138
+ "isfamilyfriendly": "True",
139
+ "regionsallowed": "AD,AE,AF,AG,AI,AL,AM,AO,AQ,AR,AS,AT,AU,AW,AX,AZ,BA,BB,BD,BE,BF,BG,BH,BI,BJ,BL,BM,BN,BO,BR,BS,BT,BV,BW,BY,BZ,CA,CC,CD,CF,CG,CH,CI,CK,CL,CM,CN,CO,CR,CU,CV,CX,CY,CZ,DJ,DK,DM,DO,DZ,EC,EE,EG,EH,ER,ES,ET...",
140
+ "interactioncount": "113589667",
141
+ "datepublished": "2014-11-25",
142
+ "genre": "Music"
143
+ }
144
+ ],
145
+ "cse_image": [
146
+ {
147
+ "src": "https://i.ytimg.com/vi/gCJ3rmiZFr8/maxresdefault.jpg"
148
+ }
149
+ ]
150
+ }
151
+ },
152
+ {
153
+ "kind": "customsearch#result",
154
+ "title": "Peter Gabriel - Sledgehammer - YouTube",
155
+ "htmlTitle": "Peter Gabriel - <b>Sledgehammer</b> - YouTube",
156
+ "link": "https://www.youtube.com/watch?v=g93mz_eZ5N4",
157
+ "displayLink": "www.youtube.com",
158
+ "snippet": "Apr 9, 2012 ... Buy the 'So 25th anniversary deluxe box set' - http://bit.ly/Nncdvq The official \nSledgehammer video. Directed by Stephen R. Johnson. You could ...",
159
+ "htmlSnippet": "Apr 9, 2012 <b>...</b> Buy the &#39;So 25th anniversary deluxe box set&#39; - http://bit.ly/Nncdvq The official <br>\n<b>Sledgehammer</b> video. Directed by Stephen R. Johnson. You could&nbsp;...",
160
+ "cacheId": "Guz1TitfJmAJ",
161
+ "formattedUrl": "https://www.youtube.com/watch?v=g93mz_eZ5N4",
162
+ "htmlFormattedUrl": "https://www.youtube.com/watch?v=g93mz_eZ5N4",
163
+ "pagemap": {
164
+ "cse_thumbnail": [
165
+ {
166
+ "width": "300",
167
+ "height": "168",
168
+ "src": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSMmsWeKHeYfUPXfgfbHMuT6xGLzi29aCKJwATVXyW__shQT_0oQiH_pIA"
169
+ }
170
+ ],
171
+ "imageobject": [
172
+ {
173
+ "url": "https://i.ytimg.com/vi/g93mz_eZ5N4/maxresdefault.jpg",
174
+ "width": "1280",
175
+ "height": "720"
176
+ }
177
+ ],
178
+ "person": [
179
+ {
180
+ "url": "http://www.youtube.com/user/itspetergabriel"
181
+ },
182
+ {
183
+ "url": "https://plus.google.com/104690915140084133581"
184
+ }
185
+ ],
186
+ "metatags": [
187
+ {
188
+ "title": "Peter Gabriel - Sledgehammer",
189
+ "theme-color": "#e62117",
190
+ "og:site_name": "YouTube",
191
+ "og:url": "https://www.youtube.com/watch?v=g93mz_eZ5N4",
192
+ "og:title": "Peter Gabriel - Sledgehammer",
193
+ "og:image": "https://i.ytimg.com/vi/g93mz_eZ5N4/maxresdefault.jpg",
194
+ "og:description": "# Buy the 'So 25th anniversary deluxe box set' - http://bit.ly/Nncdvq The official Sledgehammer video. Directed by Stephen R. Johnson. You could have a steam...",
195
+ "al:ios:app_store_id": "544007664",
196
+ "al:ios:app_name": "YouTube",
197
+ "al:ios:url": "vnd.youtube://www.youtube.com/watch?v=g93mz_eZ5N4&feature=applinks",
198
+ "al:android:url": "vnd.youtube://www.youtube.com/watch?v=g93mz_eZ5N4&feature=applinks",
199
+ "al:android:app_name": "YouTube",
200
+ "al:android:package": "com.google.android.youtube",
201
+ "al:web:url": "https://www.youtube.com/watch?v=g93mz_eZ5N4&feature=applinks",
202
+ "og:type": "video",
203
+ "og:video:url": "https://www.youtube.com/embed/g93mz_eZ5N4",
204
+ "og:video:secure_url": "https://www.youtube.com/embed/g93mz_eZ5N4",
205
+ "og:video:type": "text/html",
206
+ "og:video:width": "480",
207
+ "og:video:height": "360",
208
+ "og:video:tag": "music",
209
+ "fb:app_id": "87741124305",
210
+ "twitter:card": "player",
211
+ "twitter:site": "@youtube",
212
+ "twitter:url": "https://www.youtube.com/watch?v=g93mz_eZ5N4",
213
+ "twitter:title": "Peter Gabriel - Sledgehammer",
214
+ "twitter:description": "# Buy the 'So 25th anniversary deluxe box set' - http://bit.ly/Nncdvq The official Sledgehammer video. Directed by Stephen R. Johnson. You could have a steam...",
215
+ "twitter:image": "https://i.ytimg.com/vi/g93mz_eZ5N4/maxresdefault.jpg",
216
+ "twitter:app:name:iphone": "YouTube",
217
+ "twitter:app:id:iphone": "544007664",
218
+ "twitter:app:name:ipad": "YouTube",
219
+ "twitter:app:id:ipad": "544007664",
220
+ "twitter:app:url:iphone": "vnd.youtube://www.youtube.com/watch?v=g93mz_eZ5N4&feature=applinks",
221
+ "twitter:app:url:ipad": "vnd.youtube://www.youtube.com/watch?v=g93mz_eZ5N4&feature=applinks",
222
+ "twitter:app:name:googleplay": "YouTube",
223
+ "twitter:app:id:googleplay": "com.google.android.youtube",
224
+ "twitter:app:url:googleplay": "https://www.youtube.com/watch?v=g93mz_eZ5N4",
225
+ "twitter:player": "https://www.youtube.com/embed/g93mz_eZ5N4",
226
+ "twitter:player:width": "480",
227
+ "twitter:player:height": "360",
228
+ "attribution": "itspetergabriel%2Buser/"
229
+ }
230
+ ],
231
+ "videoobject": [
232
+ {
233
+ "url": "https://www.youtube.com/watch?v=g93mz_eZ5N4",
234
+ "name": "Peter Gabriel - Sledgehammer",
235
+ "description": "# Buy the 'So 25th anniversary deluxe box set' - http://bit.ly/Nncdvq The official Sledgehammer video. Directed by Stephen R. Johnson. You could have a steam...",
236
+ "paid": "False",
237
+ "channelid": "UCmcjOnFmIlg-LqTocHbQkFw",
238
+ "videoid": "g93mz_eZ5N4",
239
+ "duration": "PT5M2S",
240
+ "unlisted": "False",
241
+ "thumbnailurl": "https://i.ytimg.com/vi/g93mz_eZ5N4/maxresdefault.jpg",
242
+ "embedurl": "https://www.youtube.com/embed/g93mz_eZ5N4",
243
+ "playertype": "HTML5 Flash",
244
+ "width": "480",
245
+ "height": "360",
246
+ "isfamilyfriendly": "True",
247
+ "regionsallowed": "AD,AE,AF,AG,AI,AL,AM,AO,AQ,AR,AS,AT,AU,AW,AX,AZ,BA,BB,BD,BE,BF,BG,BH,BI,BJ,BL,BM,BN,BO,BQ,BR,BS,BT,BV,BW,BY,BZ,CA,CC,CD,CF,CG,CH,CI,CK,CL,CM,CN,CO,CR,CU,CV,CW,CX,CY,CZ,DE,DJ,DK,DM,DO,DZ,EC,EE,EG,EH...",
248
+ "interactioncount": "4700136",
249
+ "datepublished": "2012-04-09",
250
+ "genre": "Music"
251
+ }
252
+ ],
253
+ "cse_image": [
254
+ {
255
+ "src": "https://i.ytimg.com/vi/g93mz_eZ5N4/maxresdefault.jpg"
256
+ }
257
+ ]
258
+ }
259
+ },
260
+ {
261
+ "kind": "customsearch#result",
262
+ "title": "Rihanna - Sledgehammer (From The Motion Picture \"Star Trek ...",
263
+ "htmlTitle": "Rihanna - <b>Sledgehammer</b> (From The Motion Picture &quot;Star Trek ...",
264
+ "link": "https://www.youtube.com/watch?v=BXhIT4MpRis",
265
+ "displayLink": "www.youtube.com",
266
+ "snippet": "Jun 30, 2016 ... \"Sledgehammer (From Star Trek Beyond)” from available now: Download on \nTIDAL: http://smarturl.it/tdSledgehammer Download on iTunes: ...",
267
+ "htmlSnippet": "Jun 30, 2016 <b>...</b> &quot;<b>Sledgehammer</b> (From Star Trek Beyond)” from available now: Download on <br>\nTIDAL: http://smarturl.it/tdSledgehammer Download on iTunes:&nbsp;...",
268
+ "cacheId": "wztYJjhsfKEJ",
269
+ "formattedUrl": "https://www.youtube.com/watch?v=BXhIT4MpRis",
270
+ "htmlFormattedUrl": "https://www.youtube.com/watch?v=BXhIT4MpRis",
271
+ "pagemap": {
272
+ "cse_thumbnail": [
273
+ {
274
+ "width": "300",
275
+ "height": "168",
276
+ "src": "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcS9fJlgvahemtcQc9patE6gKP0wc9BHkqcpCo0oFeGvziKloQkxNralG06y"
277
+ }
278
+ ],
279
+ "imageobject": [
280
+ {
281
+ "url": "https://i.ytimg.com/vi/BXhIT4MpRis/maxresdefault.jpg",
282
+ "width": "1280",
283
+ "height": "720"
284
+ }
285
+ ],
286
+ "person": [
287
+ {
288
+ "url": "http://www.youtube.com/user/RihannaVEVO"
289
+ },
290
+ {
291
+ "url": "https://plus.google.com/109295198983519884974"
292
+ }
293
+ ],
294
+ "metatags": [
295
+ {
296
+ "title": "Rihanna - Sledgehammer (From The Motion Picture \"Star Trek Beyond\")",
297
+ "theme-color": "#e62117",
298
+ "og:site_name": "YouTube",
299
+ "og:url": "https://www.youtube.com/watch?v=BXhIT4MpRis",
300
+ "og:title": "Rihanna - Sledgehammer (From The Motion Picture \"Star Trek Beyond\")",
301
+ "og:image": "https://i.ytimg.com/vi/BXhIT4MpRis/maxresdefault.jpg",
302
+ "og:description": "\"Sledgehammer (From Star Trek Beyond)” from available now: Download on TIDAL: http://smarturl.it/tdSledgehammer Download on iTunes: http://smarturl.it/iSledg...",
303
+ "al:ios:app_store_id": "544007664",
304
+ "al:ios:app_name": "YouTube",
305
+ "al:ios:url": "vnd.youtube://www.youtube.com/watch?v=BXhIT4MpRis&feature=applinks",
306
+ "al:android:url": "vnd.youtube://www.youtube.com/watch?v=BXhIT4MpRis&feature=applinks",
307
+ "al:android:app_name": "YouTube",
308
+ "al:android:package": "com.google.android.youtube",
309
+ "al:web:url": "https://www.youtube.com/watch?v=BXhIT4MpRis&feature=applinks",
310
+ "og:type": "video",
311
+ "og:video:url": "https://www.youtube.com/embed/BXhIT4MpRis",
312
+ "og:video:secure_url": "https://www.youtube.com/embed/BXhIT4MpRis",
313
+ "og:video:type": "text/html",
314
+ "og:video:width": "1280",
315
+ "og:video:height": "720",
316
+ "og:video:tag": "Star Trek",
317
+ "fb:app_id": "87741124305",
318
+ "twitter:card": "player",
319
+ "twitter:site": "@youtube",
320
+ "twitter:url": "https://www.youtube.com/watch?v=BXhIT4MpRis",
321
+ "twitter:title": "Rihanna - Sledgehammer (From The Motion Picture \"Star Trek Beyond\")",
322
+ "twitter:description": "\"Sledgehammer (From Star Trek Beyond)” from available now: Download on TIDAL: http://smarturl.it/tdSledgehammer Download on iTunes: http://smarturl.it/iSledg...",
323
+ "twitter:image": "https://i.ytimg.com/vi/BXhIT4MpRis/maxresdefault.jpg",
324
+ "twitter:app:name:iphone": "YouTube",
325
+ "twitter:app:id:iphone": "544007664",
326
+ "twitter:app:name:ipad": "YouTube",
327
+ "twitter:app:id:ipad": "544007664",
328
+ "twitter:app:url:iphone": "vnd.youtube://www.youtube.com/watch?v=BXhIT4MpRis&feature=applinks",
329
+ "twitter:app:url:ipad": "vnd.youtube://www.youtube.com/watch?v=BXhIT4MpRis&feature=applinks",
330
+ "twitter:app:name:googleplay": "YouTube",
331
+ "twitter:app:id:googleplay": "com.google.android.youtube",
332
+ "twitter:app:url:googleplay": "https://www.youtube.com/watch?v=BXhIT4MpRis",
333
+ "twitter:player": "https://www.youtube.com/embed/BXhIT4MpRis",
334
+ "twitter:player:width": "1280"
335
+ }
336
+ ],
337
+ "videoobject": [
338
+ {
339
+ "url": "https://www.youtube.com/watch?v=BXhIT4MpRis",
340
+ "name": "Rihanna - Sledgehammer (From The Motion Picture \"Star Trek Beyond\")",
341
+ "description": "\"Sledgehammer (From Star Trek Beyond)” from available now: Download on TIDAL: http://smarturl.it/tdSledgehammer Download on iTunes: http://smarturl.it/iSledg...",
342
+ "paid": "False",
343
+ "channelid": "UC2xskkQVFEpLcGFnNSLQY0A",
344
+ "videoid": "BXhIT4MpRis",
345
+ "duration": "PT3M56S",
346
+ "unlisted": "False",
347
+ "thumbnailurl": "https://i.ytimg.com/vi/BXhIT4MpRis/maxresdefault.jpg",
348
+ "embedurl": "https://www.youtube.com/embed/BXhIT4MpRis",
349
+ "playertype": "HTML5 Flash",
350
+ "width": "1280",
351
+ "height": "720",
352
+ "isfamilyfriendly": "True",
353
+ "regionsallowed": "AD,AE,AF,AG,AI,AL,AM,AO,AQ,AR,AS,AT,AU,AW,AX,AZ,BA,BB,BD,BE,BF,BG,BH,BI,BJ,BL,BM,BN,BO,BQ,BR,BS,BT,BV,BW,BY,BZ,CA,CC,CD,CF,CG,CH,CI,CK,CL,CM,CN,CO,CR,CU,CV,CW,CX,CY,CZ,DJ,DK,DM,DO,DZ,EC,EE,EG,EH,ER...",
354
+ "interactioncount": "14555516",
355
+ "datepublished": "2016-06-30",
356
+ "genre": "Music"
357
+ }
358
+ ],
359
+ "cse_image": [
360
+ {
361
+ "src": "https://i.ytimg.com/vi/BXhIT4MpRis/maxresdefault.jpg"
362
+ }
363
+ ]
364
+ }
365
+ },
366
+ {
367
+ "kind": "customsearch#result",
368
+ "title": "Peter Gabriel - Sledgehammer (HD version) - YouTube",
369
+ "htmlTitle": "Peter Gabriel - <b>Sledgehammer</b> (HD version) - YouTube",
370
+ "link": "https://www.youtube.com/watch?v=OJWJE0x7T4Q",
371
+ "displayLink": "www.youtube.com",
372
+ "snippet": "Sep 24, 2012 ... The official Sledgehammer video in HD. Directed by Stephen R. Johnson, \nproduced by Adam Whittaker. Claymation, pixilation, and stop motion ...",
373
+ "htmlSnippet": "Sep 24, 2012 <b>...</b> The official <b>Sledgehammer</b> video in HD. Directed by Stephen R. Johnson, <br>\nproduced by Adam Whittaker. Claymation, pixilation, and stop motion&nbsp;...",
374
+ "cacheId": "7I3fwoRjTogJ",
375
+ "formattedUrl": "https://www.youtube.com/watch?v=OJWJE0x7T4Q",
376
+ "htmlFormattedUrl": "https://www.youtube.com/watch?v=OJWJE0x7T4Q",
377
+ "pagemap": {
378
+ "cse_thumbnail": [
379
+ {
380
+ "width": "300",
381
+ "height": "168",
382
+ "src": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRudrWeaX0ZqvQVISAIrvaQ8vJBjgEicE0LdP9Qf6wteDSkdJTOdK0WwWKW"
383
+ }
384
+ ],
385
+ "imageobject": [
386
+ {
387
+ "url": "https://i.ytimg.com/vi/OJWJE0x7T4Q/maxresdefault.jpg",
388
+ "width": "1280",
389
+ "height": "720"
390
+ }
391
+ ],
392
+ "person": [
393
+ {
394
+ "url": "http://www.youtube.com/user/itspetergabriel"
395
+ },
396
+ {
397
+ "url": "https://plus.google.com/104690915140084133581"
398
+ }
399
+ ],
400
+ "metatags": [
401
+ {
402
+ "title": "Peter Gabriel - Sledgehammer (HD version)",
403
+ "theme-color": "#e62117",
404
+ "og:site_name": "YouTube",
405
+ "og:url": "https://www.youtube.com/watch?v=OJWJE0x7T4Q",
406
+ "og:title": "Peter Gabriel - Sledgehammer (HD version)",
407
+ "og:image": "https://i.ytimg.com/vi/OJWJE0x7T4Q/maxresdefault.jpg",
408
+ "og:description": "The official Sledgehammer video in HD. Directed by Stephen R. Johnson, produced by Adam Whittaker. Claymation, pixilation, and stop motion animation provided...",
409
+ "al:ios:app_store_id": "544007664",
410
+ "al:ios:app_name": "YouTube",
411
+ "al:ios:url": "vnd.youtube://www.youtube.com/watch?v=OJWJE0x7T4Q&feature=applinks",
412
+ "al:android:url": "vnd.youtube://www.youtube.com/watch?v=OJWJE0x7T4Q&feature=applinks",
413
+ "al:android:app_name": "YouTube",
414
+ "al:android:package": "com.google.android.youtube",
415
+ "al:web:url": "https://www.youtube.com/watch?v=OJWJE0x7T4Q&feature=applinks",
416
+ "og:type": "video",
417
+ "og:video:url": "https://www.youtube.com/embed/OJWJE0x7T4Q",
418
+ "og:video:secure_url": "https://www.youtube.com/embed/OJWJE0x7T4Q",
419
+ "og:video:type": "text/html",
420
+ "og:video:width": "1280",
421
+ "og:video:height": "720",
422
+ "og:video:tag": "Peter Gabriel",
423
+ "fb:app_id": "87741124305",
424
+ "twitter:card": "player",
425
+ "twitter:site": "@youtube",
426
+ "twitter:url": "https://www.youtube.com/watch?v=OJWJE0x7T4Q",
427
+ "twitter:title": "Peter Gabriel - Sledgehammer (HD version)",
428
+ "twitter:description": "The official Sledgehammer video in HD. Directed by Stephen R. Johnson, produced by Adam Whittaker. Claymation, pixilation, and stop motion animation provided...",
429
+ "twitter:image": "https://i.ytimg.com/vi/OJWJE0x7T4Q/maxresdefault.jpg",
430
+ "twitter:app:name:iphone": "YouTube",
431
+ "twitter:app:id:iphone": "544007664",
432
+ "twitter:app:name:ipad": "YouTube",
433
+ "twitter:app:id:ipad": "544007664",
434
+ "twitter:app:url:iphone": "vnd.youtube://www.youtube.com/watch?v=OJWJE0x7T4Q&feature=applinks",
435
+ "twitter:app:url:ipad": "vnd.youtube://www.youtube.com/watch?v=OJWJE0x7T4Q&feature=applinks",
436
+ "twitter:app:name:googleplay": "YouTube",
437
+ "twitter:app:id:googleplay": "com.google.android.youtube",
438
+ "twitter:app:url:googleplay": "https://www.youtube.com/watch?v=OJWJE0x7T4Q",
439
+ "twitter:player": "https://www.youtube.com/embed/OJWJE0x7T4Q",
440
+ "twitter:player:width": "1280"
441
+ }
442
+ ],
443
+ "videoobject": [
444
+ {
445
+ "url": "https://www.youtube.com/watch?v=OJWJE0x7T4Q",
446
+ "name": "Peter Gabriel - Sledgehammer (HD version)",
447
+ "description": "The official Sledgehammer video in HD. Directed by Stephen R. Johnson, produced by Adam Whittaker. Claymation, pixilation, and stop motion animation provided...",
448
+ "paid": "False",
449
+ "channelid": "UCmcjOnFmIlg-LqTocHbQkFw",
450
+ "videoid": "OJWJE0x7T4Q",
451
+ "duration": "PT5M46S",
452
+ "unlisted": "False",
453
+ "thumbnailurl": "https://i.ytimg.com/vi/OJWJE0x7T4Q/maxresdefault.jpg",
454
+ "embedurl": "https://www.youtube.com/embed/OJWJE0x7T4Q",
455
+ "playertype": "HTML5 Flash",
456
+ "width": "1280",
457
+ "height": "720",
458
+ "isfamilyfriendly": "True",
459
+ "regionsallowed": "AD,AE,AF,AG,AI,AL,AM,AO,AQ,AR,AS,AT,AU,AW,AX,AZ,BA,BB,BD,BE,BF,BG,BH,BI,BJ,BL,BM,BN,BO,BQ,BR,BS,BT,BV,BW,BY,BZ,CA,CC,CD,CF,CG,CH,CI,CK,CL,CM,CN,CO,CR,CU,CV,CW,CX,CY,CZ,DE,DJ,DK,DM,DO,DZ,EC,EE,EG,EH...",
460
+ "interactioncount": "6412556",
461
+ "datepublished": "2012-09-24",
462
+ "genre": "Music"
463
+ }
464
+ ],
465
+ "cse_image": [
466
+ {
467
+ "src": "https://i.ytimg.com/vi/OJWJE0x7T4Q/maxresdefault.jpg"
468
+ }
469
+ ]
470
+ }
471
+ },
472
+ {
473
+ "kind": "customsearch#result",
474
+ "title": "Fifth Harmony - Sledgehammer (Lyrics) - YouTube",
475
+ "htmlTitle": "Fifth Harmony - <b>Sledgehammer</b> (Lyrics) - YouTube",
476
+ "link": "https://www.youtube.com/watch?v=2oJQjn675vE",
477
+ "displayLink": "www.youtube.com",
478
+ "snippet": "Oct 29, 2014 ... I do not own this song Buy this song on iTunes now! https://itunes.apple.com/us/\nalbum/reflection-deluxe/id909767577?ign-mpt=uo%3D4 Lyrics ...",
479
+ "htmlSnippet": "Oct 29, 2014 <b>...</b> I do not own this song Buy this song on iTunes now! https://itunes.apple.com/us/<br>\nalbum/reflection-deluxe/id909767577?ign-mpt=uo%3D4 Lyrics&nbsp;...",
480
+ "cacheId": "PnWYbkv0MKwJ",
481
+ "formattedUrl": "https://www.youtube.com/watch?v=2oJQjn675vE",
482
+ "htmlFormattedUrl": "https://www.youtube.com/watch?v=2oJQjn675vE",
483
+ "pagemap": {
484
+ "cse_thumbnail": [
485
+ {
486
+ "width": "300",
487
+ "height": "168",
488
+ "src": "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcQBeoNhfgF2L_rm33Ch5-gD7zPEZC820PXuhRkOMArgGNj2CoTmyc0NAhM"
489
+ }
490
+ ],
491
+ "imageobject": [
492
+ {
493
+ "url": "https://i.ytimg.com/vi/2oJQjn675vE/maxresdefault.jpg",
494
+ "width": "1280",
495
+ "height": "720"
496
+ }
497
+ ],
498
+ "person": [
499
+ {
500
+ "url": "http://www.youtube.com/user/FifthHarmonyHQ"
501
+ },
502
+ {
503
+ "url": "https://plus.google.com/115841849707292044033"
504
+ }
505
+ ],
506
+ "metatags": [
507
+ {
508
+ "title": "Fifth Harmony - Sledgehammer (Lyrics)",
509
+ "theme-color": "#e62117",
510
+ "og:site_name": "YouTube",
511
+ "og:url": "https://www.youtube.com/watch?v=2oJQjn675vE",
512
+ "og:title": "Fifth Harmony - Sledgehammer (Lyrics)",
513
+ "og:image": "https://i.ytimg.com/vi/2oJQjn675vE/maxresdefault.jpg",
514
+ "og:description": "I do not own this song Buy this song on iTunes now! https://itunes.apple.com/us/album/reflection-deluxe/id909767577?ign-mpt=uo%3D4 Lyrics to \"Sledgehammer\", ...",
515
+ "al:ios:app_store_id": "544007664",
516
+ "al:ios:app_name": "YouTube",
517
+ "al:ios:url": "vnd.youtube://www.youtube.com/watch?v=2oJQjn675vE&feature=applinks",
518
+ "al:android:url": "vnd.youtube://www.youtube.com/watch?v=2oJQjn675vE&feature=applinks",
519
+ "al:android:app_name": "YouTube",
520
+ "al:android:package": "com.google.android.youtube",
521
+ "al:web:url": "https://www.youtube.com/watch?v=2oJQjn675vE&feature=applinks",
522
+ "og:type": "video",
523
+ "og:video:url": "https://www.youtube.com/embed/2oJQjn675vE",
524
+ "og:video:secure_url": "https://www.youtube.com/embed/2oJQjn675vE",
525
+ "og:video:type": "text/html",
526
+ "og:video:width": "1280",
527
+ "og:video:height": "720",
528
+ "og:video:tag": "fifth harmony",
529
+ "fb:app_id": "87741124305",
530
+ "twitter:card": "player",
531
+ "twitter:site": "@youtube",
532
+ "twitter:url": "https://www.youtube.com/watch?v=2oJQjn675vE",
533
+ "twitter:title": "Fifth Harmony - Sledgehammer (Lyrics)",
534
+ "twitter:description": "I do not own this song Buy this song on iTunes now! https://itunes.apple.com/us/album/reflection-deluxe/id909767577?ign-mpt=uo%3D4 Lyrics to \"Sledgehammer\", ...",
535
+ "twitter:image": "https://i.ytimg.com/vi/2oJQjn675vE/maxresdefault.jpg",
536
+ "twitter:app:name:iphone": "YouTube",
537
+ "twitter:app:id:iphone": "544007664",
538
+ "twitter:app:name:ipad": "YouTube"
539
+ }
540
+ ],
541
+ "videoobject": [
542
+ {
543
+ "url": "https://www.youtube.com/watch?v=2oJQjn675vE",
544
+ "name": "Fifth Harmony - Sledgehammer (Lyrics)",
545
+ "description": "I do not own this song Buy this song on iTunes now! https://itunes.apple.com/us/album/reflection-deluxe/id909767577?ign-mpt=uo%3D4 Lyrics to \"Sledgehammer\", ...",
546
+ "paid": "False",
547
+ "channelid": "UCJqjOI1vwzDC_QZua9uq_Lw",
548
+ "videoid": "2oJQjn675vE",
549
+ "duration": "PT3M53S",
550
+ "unlisted": "False",
551
+ "thumbnailurl": "https://i.ytimg.com/vi/2oJQjn675vE/maxresdefault.jpg",
552
+ "embedurl": "https://www.youtube.com/embed/2oJQjn675vE",
553
+ "playertype": "HTML5 Flash",
554
+ "width": "1280",
555
+ "height": "720",
556
+ "isfamilyfriendly": "True",
557
+ "regionsallowed": "AD,AE,AF,AG,AI,AL,AM,AO,AQ,AR,AS,AT,AU,AW,AX,AZ,BA,BB,BD,BE,BF,BG,BH,BI,BJ,BL,BM,BN,BO,BQ,BR,BS,BT,BV,BW,BY,BZ,CA,CC,CD,CF,CG,CH,CI,CK,CL,CM,CN,CO,CR,CU,CV,CW,CX,CY,CZ,DJ,DK,DM,DO,DZ,EC,EE,EG,EH,ER...",
558
+ "interactioncount": "8815188",
559
+ "datepublished": "2014-10-29",
560
+ "genre": "Music"
561
+ }
562
+ ],
563
+ "cse_image": [
564
+ {
565
+ "src": "https://i.ytimg.com/vi/2oJQjn675vE/maxresdefault.jpg"
566
+ }
567
+ ]
568
+ }
569
+ },
570
+ {
571
+ "kind": "customsearch#result",
572
+ "title": "Star Trek Beyond Trailer #3 (2016) - Featuring \"Sledgehammer\" by ...",
573
+ "htmlTitle": "Star Trek Beyond Trailer #3 (2016) - Featuring &quot;<b>Sledgehammer</b>&quot; by ...",
574
+ "link": "https://www.youtube.com/watch?v=3MBXBMkcUNo",
575
+ "displayLink": "www.youtube.com",
576
+ "snippet": "Jun 27, 2016 ... Watch the new trailer for Star Trek Beyond, featuring \"Sledgehammer\" by \nRihanna. Starring Idris Elba, Chris Pine, Simon Pegg, Zachary Quinto, ...",
577
+ "htmlSnippet": "Jun 27, 2016 <b>...</b> Watch the new trailer for Star Trek Beyond, featuring &quot;<b>Sledgehammer</b>&quot; by <br>\nRihanna. Starring Idris Elba, Chris Pine, Simon Pegg, Zachary Quinto,&nbsp;...",
578
+ "cacheId": "91WrcjuIe5YJ",
579
+ "formattedUrl": "https://www.youtube.com/watch?v=3MBXBMkcUNo",
580
+ "htmlFormattedUrl": "https://www.youtube.com/watch?v=3MBXBMkcUNo",
581
+ "pagemap": {
582
+ "cse_thumbnail": [
583
+ {
584
+ "width": "300",
585
+ "height": "168",
586
+ "src": "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcTkE3db9fYIVx4OwrsvyhcBVT5HjXQVnvn4OhEk_YmYVK-sgreiH9o7LcSf"
587
+ }
588
+ ],
589
+ "imageobject": [
590
+ {
591
+ "url": "https://i.ytimg.com/vi/3MBXBMkcUNo/maxresdefault.jpg",
592
+ "width": "1280",
593
+ "height": "720"
594
+ }
595
+ ],
596
+ "person": [
597
+ {
598
+ "url": "http://www.youtube.com/user/Paramount"
599
+ },
600
+ {
601
+ "url": "https://plus.google.com/100070427969016830498"
602
+ }
603
+ ],
604
+ "metatags": [
605
+ {
606
+ "title": "Star Trek Beyond Trailer #3 (2016) - Featuring \"Sledgehammer\" by Rihanna - Paramount Pictures",
607
+ "theme-color": "#e62117",
608
+ "og:site_name": "YouTube",
609
+ "og:url": "https://www.youtube.com/watch?v=3MBXBMkcUNo",
610
+ "og:title": "Star Trek Beyond Trailer #3 (2016) - Featuring \"Sledgehammer\" by Rihanna - Paramount Pictures",
611
+ "og:image": "https://i.ytimg.com/vi/3MBXBMkcUNo/maxresdefault.jpg",
612
+ "og:description": "Watch the new trailer for Star Trek Beyond, featuring \"Sledgehammer\" by Rihanna. Starring Idris Elba, Chris Pine, Simon Pegg, Zachary Quinto, Zoe Saldana, Jo...",
613
+ "al:ios:app_store_id": "544007664",
614
+ "al:ios:app_name": "YouTube",
615
+ "al:ios:url": "vnd.youtube://www.youtube.com/watch?v=3MBXBMkcUNo&feature=applinks",
616
+ "al:android:url": "vnd.youtube://www.youtube.com/watch?v=3MBXBMkcUNo&feature=applinks",
617
+ "al:android:app_name": "YouTube",
618
+ "al:android:package": "com.google.android.youtube",
619
+ "al:web:url": "https://www.youtube.com/watch?v=3MBXBMkcUNo&feature=applinks",
620
+ "og:type": "video",
621
+ "og:video:url": "https://www.youtube.com/embed/3MBXBMkcUNo",
622
+ "og:video:secure_url": "https://www.youtube.com/embed/3MBXBMkcUNo",
623
+ "og:video:type": "text/html",
624
+ "og:video:width": "1280",
625
+ "og:video:height": "720",
626
+ "og:video:tag": "Star Trek",
627
+ "fb:app_id": "87741124305",
628
+ "twitter:card": "player",
629
+ "twitter:site": "@youtube",
630
+ "twitter:url": "https://www.youtube.com/watch?v=3MBXBMkcUNo",
631
+ "twitter:title": "Star Trek Beyond Trailer #3 (2016) - Featuring \"Sledgehammer\" by Rihanna - Paramount Pictures",
632
+ "twitter:description": "Watch the new trailer for Star Trek Beyond, featuring \"Sledgehammer\" by Rihanna. Starring Idris Elba, Chris Pine, Simon Pegg, Zachary Quinto, Zoe Saldana, Jo...",
633
+ "twitter:image": "https://i.ytimg.com/vi/3MBXBMkcUNo/maxresdefault.jpg",
634
+ "twitter:app:name:iphone": "YouTube",
635
+ "twitter:app:id:iphone": "544007664"
636
+ }
637
+ ],
638
+ "videoobject": [
639
+ {
640
+ "url": "https://www.youtube.com/watch?v=3MBXBMkcUNo",
641
+ "name": "Star Trek Beyond Trailer #3 (2016) - Featuring \"Sledgehammer\" by Rihanna - Paramount Pictures",
642
+ "description": "Watch the new trailer for Star Trek Beyond, featuring \"Sledgehammer\" by Rihanna. Starring Idris Elba, Chris Pine, Simon Pegg, Zachary Quinto, Zoe Saldana, Jo...",
643
+ "paid": "False",
644
+ "channelid": "UCF9imwPMSGz4Vq1NiTWCC7g",
645
+ "videoid": "3MBXBMkcUNo",
646
+ "duration": "PT1M49S",
647
+ "unlisted": "False",
648
+ "thumbnailurl": "https://i.ytimg.com/vi/3MBXBMkcUNo/maxresdefault.jpg",
649
+ "embedurl": "https://www.youtube.com/embed/3MBXBMkcUNo",
650
+ "playertype": "HTML5 Flash",
651
+ "width": "1280",
652
+ "height": "720",
653
+ "isfamilyfriendly": "True",
654
+ "regionsallowed": "AD,AE,AF,AG,AI,AL,AM,AO,AQ,AR,AS,AT,AU,AW,AX,AZ,BA,BB,BD,BE,BF,BG,BH,BI,BJ,BL,BM,BN,BO,BQ,BR,BS,BT,BV,BW,BY,BZ,CA,CC,CD,CF,CG,CH,CI,CK,CL,CM,CN,CO,CR,CU,CV,CW,CX,CY,CZ,DE,DJ,DK,DM,DO,DZ,EC,EE,EG,EH...",
655
+ "interactioncount": "1604369",
656
+ "datepublished": "2016-06-27",
657
+ "genre": "Film & Animation"
658
+ }
659
+ ],
660
+ "cse_image": [
661
+ {
662
+ "src": "https://i.ytimg.com/vi/3MBXBMkcUNo/maxresdefault.jpg"
663
+ }
664
+ ]
665
+ }
666
+ },
667
+ {
668
+ "kind": "customsearch#result",
669
+ "title": "Rihanna - Sledgehammer (Star Trek Beyond) - YouTube",
670
+ "htmlTitle": "Rihanna - <b>Sledgehammer</b> (Star Trek Beyond) - YouTube",
671
+ "link": "https://www.youtube.com/watch?v=Qa9aZNrBVpo",
672
+ "displayLink": "www.youtube.com",
673
+ "snippet": "Jun 28, 2016 ... Brand new soundtrack of the movie - Star Trek Beyond.",
674
+ "htmlSnippet": "Jun 28, 2016 <b>...</b> Brand new soundtrack of the movie - Star Trek Beyond.",
675
+ "cacheId": "TxcZrHE2EEEJ",
676
+ "formattedUrl": "https://www.youtube.com/watch?v=Qa9aZNrBVpo",
677
+ "htmlFormattedUrl": "https://www.youtube.com/watch?v=Qa9aZNrBVpo",
678
+ "pagemap": {
679
+ "cse_thumbnail": [
680
+ {
681
+ "width": "224",
682
+ "height": "225",
683
+ "src": "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcRUpzgZClb9W1hFhay7Z3Y1Ob8ZipFOvt7wDcNTQosKifD7GDAB-I9Pmws"
684
+ }
685
+ ],
686
+ "imageobject": [
687
+ {
688
+ "url": "https://i.ytimg.com/vi/Qa9aZNrBVpo/maxresdefault.jpg",
689
+ "width": "1280",
690
+ "height": "720"
691
+ }
692
+ ],
693
+ "person": [
694
+ {
695
+ "url": "http://www.youtube.com/channel/UCdUa1HtlT5ynrqMmK2e6UXA"
696
+ },
697
+ {
698
+ "url": "https://plus.google.com/115447851444290582202"
699
+ }
700
+ ],
701
+ "metatags": [
702
+ {
703
+ "title": "Rihanna - Sledgehammer (Star Trek Beyond)",
704
+ "theme-color": "#e62117",
705
+ "og:site_name": "YouTube",
706
+ "og:url": "https://www.youtube.com/watch?v=Qa9aZNrBVpo",
707
+ "og:title": "Rihanna - Sledgehammer (Star Trek Beyond)",
708
+ "og:image": "https://i.ytimg.com/vi/Qa9aZNrBVpo/maxresdefault.jpg",
709
+ "og:description": "Brand new soundtrack of the movie - Star Trek Beyond",
710
+ "al:ios:app_store_id": "544007664",
711
+ "al:ios:app_name": "YouTube",
712
+ "al:ios:url": "vnd.youtube://www.youtube.com/watch?v=Qa9aZNrBVpo&feature=applinks",
713
+ "al:android:url": "vnd.youtube://www.youtube.com/watch?v=Qa9aZNrBVpo&feature=applinks",
714
+ "al:android:app_name": "YouTube",
715
+ "al:android:package": "com.google.android.youtube",
716
+ "al:web:url": "https://www.youtube.com/watch?v=Qa9aZNrBVpo&feature=applinks",
717
+ "og:type": "video",
718
+ "og:video:url": "https://www.youtube.com/embed/Qa9aZNrBVpo",
719
+ "og:video:secure_url": "https://www.youtube.com/embed/Qa9aZNrBVpo",
720
+ "og:video:type": "text/html",
721
+ "og:video:width": "480",
722
+ "og:video:height": "360",
723
+ "og:video:tag": "Rihanna",
724
+ "fb:app_id": "87741124305",
725
+ "twitter:card": "player",
726
+ "twitter:site": "@youtube",
727
+ "twitter:url": "https://www.youtube.com/watch?v=Qa9aZNrBVpo",
728
+ "twitter:title": "Rihanna - Sledgehammer (Star Trek Beyond)",
729
+ "twitter:description": "Brand new soundtrack of the movie - Star Trek Beyond",
730
+ "twitter:image": "https://i.ytimg.com/vi/Qa9aZNrBVpo/maxresdefault.jpg",
731
+ "twitter:app:name:iphone": "YouTube",
732
+ "twitter:app:id:iphone": "544007664",
733
+ "twitter:app:name:ipad": "YouTube",
734
+ "twitter:app:id:ipad": "544007664",
735
+ "twitter:app:url:iphone": "vnd.youtube://www.youtube.com/watch?v=Qa9aZNrBVpo&feature=applinks",
736
+ "twitter:app:url:ipad": "vnd.youtube://www.youtube.com/watch?v=Qa9aZNrBVpo&feature=applinks",
737
+ "twitter:app:name:googleplay": "YouTube",
738
+ "twitter:app:id:googleplay": "com.google.android.youtube",
739
+ "twitter:app:url:googleplay": "https://www.youtube.com/watch?v=Qa9aZNrBVpo",
740
+ "twitter:player": "https://www.youtube.com/embed/Qa9aZNrBVpo",
741
+ "twitter:player:width": "480",
742
+ "twitter:player:height": "360",
743
+ "attribution": "UMG/"
744
+ }
745
+ ],
746
+ "videoobject": [
747
+ {
748
+ "url": "https://www.youtube.com/watch?v=Qa9aZNrBVpo",
749
+ "name": "Rihanna - Sledgehammer (Star Trek Beyond)",
750
+ "description": "Brand new soundtrack of the movie - Star Trek Beyond",
751
+ "paid": "False",
752
+ "channelid": "UCdUa1HtlT5ynrqMmK2e6UXA",
753
+ "videoid": "Qa9aZNrBVpo",
754
+ "duration": "PT3M32S",
755
+ "unlisted": "False",
756
+ "thumbnailurl": "https://i.ytimg.com/vi/Qa9aZNrBVpo/maxresdefault.jpg",
757
+ "embedurl": "https://www.youtube.com/embed/Qa9aZNrBVpo",
758
+ "playertype": "HTML5 Flash",
759
+ "width": "480",
760
+ "height": "360",
761
+ "isfamilyfriendly": "True",
762
+ "regionsallowed": "AD,AE,AF,AG,AI,AL,AM,AO,AQ,AR,AS,AT,AU,AW,AX,AZ,BA,BB,BD,BE,BF,BG,BH,BI,BJ,BL,BM,BN,BO,BQ,BR,BS,BT,BV,BW,BY,BZ,CA,CC,CD,CF,CG,CH,CI,CK,CL,CM,CN,CO,CR,CU,CV,CW,CX,CY,CZ,DJ,DK,DM,DO,DZ,EC,EE,EG,EH,ER...",
763
+ "interactioncount": "111184",
764
+ "datepublished": "2016-06-28",
765
+ "genre": "People & Blogs"
766
+ }
767
+ ],
768
+ "cse_image": [
769
+ {
770
+ "src": "https://i.ytimg.com/vi/Qa9aZNrBVpo/maxresdefault.jpg"
771
+ }
772
+ ]
773
+ }
774
+ },
775
+ {
776
+ "kind": "customsearch#result",
777
+ "title": "Fifth Harmony - Sledgehammer (Audio) - YouTube",
778
+ "htmlTitle": "Fifth Harmony - <b>Sledgehammer</b> (Audio) - YouTube",
779
+ "link": "https://www.youtube.com/watch?v=aiLjNCmOqLM",
780
+ "displayLink": "www.youtube.com",
781
+ "snippet": "Oct 28, 2014 ... thx I needed those closest thing to a sledgehammer. Read more ... If your heart is \nlike a sledgehammer.....u need urgent help from a doctor.",
782
+ "htmlSnippet": "Oct 28, 2014 <b>...</b> thx I needed those closest thing to a <b>sledgehammer</b>. Read more ... If your heart is <br>\nlike a <b>sledgehammer</b>.....u need urgent help from a doctor.",
783
+ "cacheId": "TZkCIV6ElQcJ",
784
+ "formattedUrl": "https://www.youtube.com/watch?v=aiLjNCmOqLM",
785
+ "htmlFormattedUrl": "https://www.youtube.com/watch?v=aiLjNCmOqLM",
786
+ "pagemap": {
787
+ "cse_thumbnail": [
788
+ {
789
+ "width": "300",
790
+ "height": "168",
791
+ "src": "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcTgUmqgfCg_xzpx5vBxO49b6pzy5fB8HmuvGKHAA8ue9R-Iiegt9yYvXRo"
792
+ }
793
+ ],
794
+ "imageobject": [
795
+ {
796
+ "url": "https://i.ytimg.com/vi/aiLjNCmOqLM/maxresdefault.jpg",
797
+ "width": "1280",
798
+ "height": "720"
799
+ }
800
+ ],
801
+ "person": [
802
+ {
803
+ "url": "http://www.youtube.com/user/FifthHarmonyVEVO"
804
+ },
805
+ {
806
+ "url": "https://plus.google.com/115158801521521788945"
807
+ }
808
+ ],
809
+ "metatags": [
810
+ {
811
+ "title": "Fifth Harmony - Sledgehammer (Audio)",
812
+ "theme-color": "#e62117",
813
+ "og:site_name": "YouTube",
814
+ "og:url": "https://www.youtube.com/watch?v=aiLjNCmOqLM",
815
+ "og:title": "Fifth Harmony - Sledgehammer (Audio)",
816
+ "og:image": "https://i.ytimg.com/vi/aiLjNCmOqLM/maxresdefault.jpg",
817
+ "og:description": "Download the Reflection album at iTunes: http://smarturl.it/RFLT Download the Reflection album at Amazon: http://smarturl.it/5h_Rflt Spotify: http://smarturl...",
818
+ "al:ios:app_store_id": "544007664",
819
+ "al:ios:app_name": "YouTube",
820
+ "al:ios:url": "vnd.youtube://www.youtube.com/watch?v=aiLjNCmOqLM&feature=applinks",
821
+ "al:android:url": "vnd.youtube://www.youtube.com/watch?v=aiLjNCmOqLM&feature=applinks",
822
+ "al:android:app_name": "YouTube",
823
+ "al:android:package": "com.google.android.youtube",
824
+ "al:web:url": "https://www.youtube.com/watch?v=aiLjNCmOqLM&feature=applinks",
825
+ "og:type": "video",
826
+ "og:video:url": "https://www.youtube.com/embed/aiLjNCmOqLM",
827
+ "og:video:secure_url": "https://www.youtube.com/embed/aiLjNCmOqLM",
828
+ "og:video:type": "text/html",
829
+ "og:video:width": "1280",
830
+ "og:video:height": "720",
831
+ "og:video:tag": "Pop",
832
+ "fb:app_id": "87741124305",
833
+ "twitter:card": "player",
834
+ "twitter:site": "@youtube",
835
+ "twitter:url": "https://www.youtube.com/watch?v=aiLjNCmOqLM",
836
+ "twitter:title": "Fifth Harmony - Sledgehammer (Audio)",
837
+ "twitter:description": "Download the Reflection album at iTunes: http://smarturl.it/RFLT Download the Reflection album at Amazon: http://smarturl.it/5h_Rflt Spotify: http://smarturl...",
838
+ "twitter:image": "https://i.ytimg.com/vi/aiLjNCmOqLM/maxresdefault.jpg",
839
+ "twitter:app:name:iphone": "YouTube",
840
+ "twitter:app:id:iphone": "544007664",
841
+ "twitter:app:name:ipad": "YouTube",
842
+ "twitter:app:id:ipad": "544007664",
843
+ "twitter:app:url:iphone": "vnd.youtube://www.youtube.com/watch?v=aiLjNCmOqLM&feature=applinks",
844
+ "twitter:app:url:ipad": "vnd.youtube://www.youtube.com/watch?v=aiLjNCmOqLM&feature=applinks",
845
+ "twitter:app:name:googleplay": "YouTube",
846
+ "twitter:app:id:googleplay": "com.google.android.youtube",
847
+ "twitter:app:url:googleplay": "https://www.youtube.com/watch?v=aiLjNCmOqLM",
848
+ "twitter:player": "https://www.youtube.com/embed/aiLjNCmOqLM",
849
+ "twitter:player:width": "1280",
850
+ "twitter:player:height": "720",
851
+ "attribution": "vevo/"
852
+ }
853
+ ],
854
+ "videoobject": [
855
+ {
856
+ "url": "https://www.youtube.com/watch?v=aiLjNCmOqLM",
857
+ "name": "Fifth Harmony - Sledgehammer (Audio)",
858
+ "description": "Download the Reflection album at iTunes: http://smarturl.it/RFLT Download the Reflection album at Amazon: http://smarturl.it/5h_Rflt Spotify: http://smarturl...",
859
+ "paid": "False",
860
+ "channelid": "UC09d82usokACH1z5YeKnfiA",
861
+ "videoid": "aiLjNCmOqLM",
862
+ "duration": "PT3M55S",
863
+ "unlisted": "False",
864
+ "thumbnailurl": "https://i.ytimg.com/vi/aiLjNCmOqLM/maxresdefault.jpg",
865
+ "embedurl": "https://www.youtube.com/embed/aiLjNCmOqLM",
866
+ "playertype": "HTML5 Flash",
867
+ "width": "1280",
868
+ "height": "720",
869
+ "isfamilyfriendly": "True",
870
+ "regionsallowed": "AD,AE,AF,AG,AI,AL,AM,AO,AQ,AR,AS,AT,AU,AW,AX,AZ,BA,BB,BD,BE,BF,BG,BH,BI,BJ,BL,BM,BN,BO,BR,BS,BT,BV,BW,BY,BZ,CA,CC,CD,CF,CG,CH,CI,CK,CL,CM,CN,CO,CR,CU,CV,CX,CY,CZ,DJ,DK,DM,DO,DZ,EC,EE,EG,EH,ER,ES,ET...",
871
+ "interactioncount": "4525111",
872
+ "datepublished": "2014-10-28",
873
+ "genre": "Music"
874
+ }
875
+ ],
876
+ "cse_image": [
877
+ {
878
+ "src": "https://i.ytimg.com/vi/aiLjNCmOqLM/maxresdefault.jpg"
879
+ }
880
+ ]
881
+ }
882
+ },
883
+ {
884
+ "kind": "customsearch#result",
885
+ "title": "Peter Gabriel - Sledgehammer (1986) - YouTube",
886
+ "htmlTitle": "Peter Gabriel - <b>Sledgehammer</b> (1986) - YouTube",
887
+ "link": "https://www.youtube.com/watch?v=N1tTN-b5KHg",
888
+ "displayLink": "www.youtube.com",
889
+ "snippet": "Apr 7, 2008 ... Music video of 1986 directed by Stephen R. Johnson From Peter Gabriel's 'So' \nalbum In 1987, this video won 9 MTV Video Music Awards.",
890
+ "htmlSnippet": "Apr 7, 2008 <b>...</b> Music video of 1986 directed by Stephen R. Johnson From Peter Gabriel&#39;s &#39;So&#39; <br>\nalbum In 1987, this video won 9 MTV Video Music Awards.",
891
+ "cacheId": "YSnbjZtNlSEJ",
892
+ "formattedUrl": "https://www.youtube.com/watch?v=N1tTN-b5KHg",
893
+ "htmlFormattedUrl": "https://www.youtube.com/watch?v=N1tTN-b5KHg",
894
+ "pagemap": {
895
+ "cse_thumbnail": [
896
+ {
897
+ "width": "259",
898
+ "height": "194",
899
+ "src": "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcSrNw6Vh4SCnCFd933-knWqAoWPu-SHdT81n--JpkGTrhudnSBsnNhmkXQ"
900
+ }
901
+ ],
902
+ "imageobject": [
903
+ {
904
+ "url": "https://i.ytimg.com/vi/N1tTN-b5KHg/hqdefault.jpg",
905
+ "width": "480",
906
+ "height": "360"
907
+ }
908
+ ],
909
+ "person": [
910
+ {
911
+ "url": "http://www.youtube.com/user/pcfrlog"
912
+ }
913
+ ],
914
+ "metatags": [
915
+ {
916
+ "title": "Peter Gabriel - Sledgehammer (1986)",
917
+ "theme-color": "#e62117",
918
+ "og:site_name": "YouTube",
919
+ "og:url": "https://www.youtube.com/watch?v=N1tTN-b5KHg",
920
+ "og:title": "Peter Gabriel - Sledgehammer (1986)",
921
+ "og:image": "https://i.ytimg.com/vi/N1tTN-b5KHg/hqdefault.jpg",
922
+ "og:description": "Music video of 1986 directed by Stephen R. Johnson From Peter Gabriel's 'So' album In 1987, this video won 9 MTV Video Music Awards. For more information abo...",
923
+ "al:ios:app_store_id": "544007664",
924
+ "al:ios:app_name": "YouTube",
925
+ "al:ios:url": "vnd.youtube://www.youtube.com/watch?v=N1tTN-b5KHg&feature=applinks",
926
+ "al:android:url": "vnd.youtube://www.youtube.com/watch?v=N1tTN-b5KHg&feature=applinks",
927
+ "al:android:app_name": "YouTube",
928
+ "al:android:package": "com.google.android.youtube",
929
+ "al:web:url": "https://www.youtube.com/watch?v=N1tTN-b5KHg&feature=applinks",
930
+ "og:type": "video",
931
+ "og:video:url": "https://www.youtube.com/embed/N1tTN-b5KHg",
932
+ "og:video:secure_url": "https://www.youtube.com/embed/N1tTN-b5KHg",
933
+ "og:video:type": "text/html",
934
+ "og:video:width": "480",
935
+ "og:video:height": "360",
936
+ "og:video:tag": "peter",
937
+ "fb:app_id": "87741124305",
938
+ "twitter:card": "player",
939
+ "twitter:site": "@youtube",
940
+ "twitter:url": "https://www.youtube.com/watch?v=N1tTN-b5KHg",
941
+ "twitter:title": "Peter Gabriel - Sledgehammer (1986)",
942
+ "twitter:description": "Music video of 1986 directed by Stephen R. Johnson From Peter Gabriel's 'So' album In 1987, this video won 9 MTV Video Music Awards. For more information abo...",
943
+ "twitter:image": "https://i.ytimg.com/vi/N1tTN-b5KHg/hqdefault.jpg",
944
+ "twitter:app:name:iphone": "YouTube",
945
+ "twitter:app:id:iphone": "544007664",
946
+ "twitter:app:name:ipad": "YouTube",
947
+ "twitter:app:id:ipad": "544007664",
948
+ "twitter:app:url:iphone": "vnd.youtube://www.youtube.com/watch?v=N1tTN-b5KHg&feature=applinks",
949
+ "twitter:app:url:ipad": "vnd.youtube://www.youtube.com/watch?v=N1tTN-b5KHg&feature=applinks",
950
+ "twitter:app:name:googleplay": "YouTube",
951
+ "twitter:app:id:googleplay": "com.google.android.youtube",
952
+ "twitter:app:url:googleplay": "https://www.youtube.com/watch?v=N1tTN-b5KHg",
953
+ "twitter:player": "https://www.youtube.com/embed/N1tTN-b5KHg",
954
+ "twitter:player:width": "480",
955
+ "twitter:player:height": "360",
956
+ "attribution": "itspetergabriel%2Buser/"
957
+ }
958
+ ],
959
+ "videoobject": [
960
+ {
961
+ "url": "https://www.youtube.com/watch?v=N1tTN-b5KHg",
962
+ "name": "Peter Gabriel - Sledgehammer (1986)",
963
+ "description": "Music video of 1986 directed by Stephen R. Johnson From Peter Gabriel's 'So' album In 1987, this video won 9 MTV Video Music Awards. For more information abo...",
964
+ "paid": "False",
965
+ "channelid": "UCm6nIscK5yPmQ9ONUiaG6SQ",
966
+ "videoid": "N1tTN-b5KHg",
967
+ "duration": "PT5M1S",
968
+ "unlisted": "False",
969
+ "thumbnailurl": "https://i.ytimg.com/vi/N1tTN-b5KHg/hqdefault.jpg",
970
+ "embedurl": "https://www.youtube.com/embed/N1tTN-b5KHg",
971
+ "playertype": "HTML5 Flash",
972
+ "width": "480",
973
+ "height": "360",
974
+ "isfamilyfriendly": "True",
975
+ "regionsallowed": "AD,AE,AF,AG,AI,AL,AM,AO,AQ,AR,AS,AT,AU,AW,AX,AZ,BA,BB,BD,BE,BF,BG,BH,BI,BJ,BL,BM,BN,BO,BQ,BR,BS,BT,BV,BW,BY,BZ,CA,CC,CD,CF,CG,CH,CI,CK,CL,CM,CN,CO,CR,CU,CV,CW,CX,CY,CZ,DE,DJ,DK,DM,DO,DZ,EC,EE,EG,EH...",
976
+ "interactioncount": "9678670",
977
+ "datepublished": "2008-04-07",
978
+ "genre": "Music"
979
+ }
980
+ ],
981
+ "cse_image": [
982
+ {
983
+ "src": "https://i.ytimg.com/vi/N1tTN-b5KHg/hqdefault.jpg"
984
+ }
985
+ ]
986
+ }
987
+ },
988
+ {
989
+ "kind": "customsearch#result",
990
+ "title": "RIHANNA - SLEDGEHAMMER ILLUMINATI EXPOSED! - YouTube",
991
+ "htmlTitle": "RIHANNA - <b>SLEDGEHAMMER</b> ILLUMINATI EXPOSED! - YouTube",
992
+ "link": "https://www.youtube.com/watch?v=oPH03dnzneM",
993
+ "displayLink": "www.youtube.com",
994
+ "snippet": "Jul 1, 2016 ... Rihanna is a WITCH - Sledgehammer EXPOSED! ... Rihanna - Sledgehammer/\nStar Trek Beyond/ILLUMINATI EXPOSED - Duration: 16:17.",
995
+ "htmlSnippet": "Jul 1, 2016 <b>...</b> Rihanna is a WITCH - <b>Sledgehammer</b> EXPOSED! ... Rihanna - <b>Sledgehammer</b>/<br>\nStar Trek Beyond/ILLUMINATI EXPOSED - Duration: 16:17.",
996
+ "cacheId": "eva54fYKd78J",
997
+ "formattedUrl": "https://www.youtube.com/watch?v=oPH03dnzneM",
998
+ "htmlFormattedUrl": "https://www.youtube.com/watch?v=oPH03dnzneM",
999
+ "pagemap": {
1000
+ "cse_thumbnail": [
1001
+ {
1002
+ "width": "283",
1003
+ "height": "178",
1004
+ "src": "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcS3FIJY7gXCgfSgjtJDq1Htb9V-Y2uJnF5qpvlClck-gwNBfP7_SQZjvaw"
1005
+ }
1006
+ ],
1007
+ "imageobject": [
1008
+ {
1009
+ "url": "https://i.ytimg.com/vi/oPH03dnzneM/maxresdefault.jpg",
1010
+ "width": "1280",
1011
+ "height": "720"
1012
+ }
1013
+ ],
1014
+ "person": [
1015
+ {
1016
+ "url": "http://www.youtube.com/channel/UCp5x5kxCgg_A220jNIsLyfA"
1017
+ },
1018
+ {
1019
+ "url": "https://plus.google.com/104106795446889493717"
1020
+ }
1021
+ ],
1022
+ "metatags": [
1023
+ {
1024
+ "title": "RIHANNA - SLEDGEHAMMER ILLUMINATI EXPOSED!",
1025
+ "theme-color": "#e62117",
1026
+ "og:site_name": "YouTube",
1027
+ "og:url": "https://www.youtube.com/watch?v=oPH03dnzneM",
1028
+ "og:title": "RIHANNA - SLEDGEHAMMER ILLUMINATI EXPOSED!",
1029
+ "og:image": "https://i.ytimg.com/vi/oPH03dnzneM/maxresdefault.jpg",
1030
+ "og:description": "RIHANNA - SLEDGEHAMMER ILLUMINATI EXPOSED!",
1031
+ "al:ios:app_store_id": "544007664",
1032
+ "al:ios:app_name": "YouTube",
1033
+ "al:ios:url": "vnd.youtube://www.youtube.com/watch?v=oPH03dnzneM&feature=applinks",
1034
+ "al:android:url": "vnd.youtube://www.youtube.com/watch?v=oPH03dnzneM&feature=applinks",
1035
+ "al:android:app_name": "YouTube",
1036
+ "al:android:package": "com.google.android.youtube",
1037
+ "al:web:url": "https://www.youtube.com/watch?v=oPH03dnzneM&feature=applinks",
1038
+ "og:type": "video",
1039
+ "og:video:url": "https://www.youtube.com/embed/oPH03dnzneM",
1040
+ "og:video:secure_url": "https://www.youtube.com/embed/oPH03dnzneM",
1041
+ "og:video:type": "text/html",
1042
+ "og:video:width": "1280",
1043
+ "og:video:height": "720",
1044
+ "og:video:tag": "rihanna",
1045
+ "fb:app_id": "87741124305",
1046
+ "twitter:card": "player",
1047
+ "twitter:site": "@youtube",
1048
+ "twitter:url": "https://www.youtube.com/watch?v=oPH03dnzneM",
1049
+ "twitter:title": "RIHANNA - SLEDGEHAMMER ILLUMINATI EXPOSED!",
1050
+ "twitter:description": "RIHANNA - SLEDGEHAMMER ILLUMINATI EXPOSED!",
1051
+ "twitter:image": "https://i.ytimg.com/vi/oPH03dnzneM/maxresdefault.jpg"
1052
+ }
1053
+ ],
1054
+ "videoobject": [
1055
+ {
1056
+ "url": "https://www.youtube.com/watch?v=oPH03dnzneM",
1057
+ "name": "RIHANNA - SLEDGEHAMMER ILLUMINATI EXPOSED!",
1058
+ "description": "RIHANNA - SLEDGEHAMMER ILLUMINATI EXPOSED!",
1059
+ "paid": "False",
1060
+ "channelid": "UCp5x5kxCgg_A220jNIsLyfA",
1061
+ "videoid": "oPH03dnzneM",
1062
+ "duration": "PT14M36S",
1063
+ "unlisted": "False",
1064
+ "thumbnailurl": "https://i.ytimg.com/vi/oPH03dnzneM/maxresdefault.jpg",
1065
+ "embedurl": "https://www.youtube.com/embed/oPH03dnzneM",
1066
+ "playertype": "HTML5 Flash",
1067
+ "width": "1280",
1068
+ "height": "720",
1069
+ "isfamilyfriendly": "True",
1070
+ "regionsallowed": "AD,AE,AF,AG,AI,AL,AM,AO,AQ,AR,AS,AT,AU,AW,AX,AZ,BA,BB,BD,BE,BF,BG,BH,BI,BJ,BL,BM,BN,BO,BQ,BR,BS,BT,BV,BW,BY,BZ,CA,CC,CD,CF,CG,CH,CI,CK,CL,CM,CN,CO,CR,CU,CV,CW,CX,CY,CZ,DE,DJ,DK,DM,DO,DZ,EC,EE,EG,EH...",
1071
+ "interactioncount": "79293",
1072
+ "datepublished": "2016-07-01",
1073
+ "genre": "Music"
1074
+ }
1075
+ ],
1076
+ "cse_image": [
1077
+ {
1078
+ "src": "https://i.ytimg.com/vi/oPH03dnzneM/maxresdefault.jpg"
1079
+ }
1080
+ ]
1081
+ }
1082
+ }
1083
+ ]
1084
+ }