YPBT 0.1.4
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 +7 -0
- data/.gitignore +4 -0
- data/.rubocop.yml +3 -0
- data/Gemfile +14 -0
- data/LICENSE +21 -0
- data/README.md +13 -0
- data/Rakefile +57 -0
- data/YPBT.gemspec +35 -0
- data/bin/YPBT +24 -0
- data/config/credentials.yml.example +2 -0
- data/lib/YPBT.rb +4 -0
- data/lib/YPBT/author.rb +15 -0
- data/lib/YPBT/comment.rb +35 -0
- data/lib/YPBT/version.rb +5 -0
- data/lib/YPBT/video.rb +30 -0
- data/lib/YPBT/youtube_api.rb +61 -0
- data/spec/fixtures/cassettes/youtube_api.yml +1634 -0
- data/spec/fixtures/yt_api_results.yml +81 -0
- data/spec/spec_helper.rb +25 -0
- data/spec/video_spec.rb +73 -0
- metadata +213 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: efa96df6ef895c6f7666e5dd9e641d4ac271521e
|
4
|
+
data.tar.gz: fc3c537161216660c1b60389fcb2c1beeae1b5ab
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 71d3ad3d07a30b13bf2fb8782a00a17ef604d6b53d6e0a6fbfb24d4e0c4b51836ee781c470ef67462ce9772fbb8ed06471aee9ba9f4a71d412b283d59cbc87a2
|
7
|
+
data.tar.gz: d9b29bda32feb134b6cbaaf09dee19d546a9fa5ffdf3865a91a1e7c85b609c6d74750d59fef1340c544836c695a8c8fa700b41691edb54d0bc961807eeeb38fc
|
data/.gitignore
ADDED
data/.rubocop.yml
ADDED
data/Gemfile
ADDED
data/LICENSE
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
MIT LICENSE
|
2
|
+
|
3
|
+
Copyright (c)
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,13 @@
|
|
1
|
+
# Youtube Progress Bar Tagger
|
2
|
+
|
3
|
+
## Youtube data_api exploration
|
4
|
+
### Quick Start
|
5
|
+
Export your [Youtube api key](https://console.developers.google.com/apis/credentials)
|
6
|
+
|
7
|
+
export YOUTUBE_API_KEY='Your_Youtube_API_Key'
|
8
|
+
Install essential gem
|
9
|
+
|
10
|
+
bundle install
|
11
|
+
Then do a basic test for our module
|
12
|
+
|
13
|
+
rake spec
|
data/Rakefile
ADDED
@@ -0,0 +1,57 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
require 'rake/testtask'
|
3
|
+
|
4
|
+
task default: :spec
|
5
|
+
|
6
|
+
namespace :credentials do
|
7
|
+
require 'yaml'
|
8
|
+
|
9
|
+
desc 'generate YOUTUBE_API_KEY to STDOUT'
|
10
|
+
task :get_youtube_api_key do
|
11
|
+
credentials = YAML.load(File.read('config/credentials.yml'))
|
12
|
+
require_relative 'lib/YPBT/youtube_api'
|
13
|
+
ENV['YOUTUBE_API_KEY'] = credentials[:YOUTUBE_API_KEY]
|
14
|
+
|
15
|
+
puts "YOUTUBE_API_KEY: #{YoutubeVideo::YtApi.api_key}"
|
16
|
+
end
|
17
|
+
|
18
|
+
desc 'Export sample credentials from file to bash'
|
19
|
+
task :export do
|
20
|
+
credentials = YAML.load(File.read('config/credentials.yml'))
|
21
|
+
puts 'Please run the following in bash:'
|
22
|
+
puts "export YOUTUBE_API_KEY=#{credentials[:YOUTUBE_API_KEY]}"
|
23
|
+
end
|
24
|
+
end
|
25
|
+
|
26
|
+
desc 'run tests'
|
27
|
+
task :spec do
|
28
|
+
sh 'ruby spec/video_spec.rb'
|
29
|
+
end
|
30
|
+
|
31
|
+
desc 'delete cassette fixtures'
|
32
|
+
task :wipe do
|
33
|
+
sh 'rm spec/fixtures/cassettes/*.yml' do |ok, _|
|
34
|
+
puts(ok ? 'Cassettes deleted' : 'No casseettes found')
|
35
|
+
end
|
36
|
+
end
|
37
|
+
|
38
|
+
desc 'quality checks'
|
39
|
+
|
40
|
+
namespace :quality do
|
41
|
+
desc 'run all quality checks'
|
42
|
+
task all: [:rubocop, :flog, :flay]
|
43
|
+
|
44
|
+
task :rubocop do
|
45
|
+
sh 'rubocop'
|
46
|
+
end
|
47
|
+
|
48
|
+
task :flog do
|
49
|
+
sh 'flog lib/*.rb'
|
50
|
+
sh 'flog spec/*.rb'
|
51
|
+
end
|
52
|
+
|
53
|
+
task :flay do
|
54
|
+
sh 'flay lib/*.rb'
|
55
|
+
sh 'flay spec/*.rb'
|
56
|
+
end
|
57
|
+
end
|
data/YPBT.gemspec
ADDED
@@ -0,0 +1,35 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
$LOAD_PATH.push File.expand_path('../lib', __FILE__)
|
3
|
+
require 'YPBT/version'
|
4
|
+
|
5
|
+
Gem::Specification.new do |s|
|
6
|
+
s.name = 'YPBT'
|
7
|
+
s.version = YoutubeVideo::VERSION
|
8
|
+
|
9
|
+
s.summary = 'Gets comment from public Youtube videos'
|
10
|
+
s.description = 'Youtube Progress Bar Tagger '\
|
11
|
+
'extracts comment threads, comments, and '\
|
12
|
+
'comment of author from Youtube videos'
|
13
|
+
s.authors = ['Yi-Min'], ['Yuan-Yu'], ['Kun-Lin']
|
14
|
+
s.email = ['b37582000@gmail.com'], ['tearsgundam@gmail.com'],
|
15
|
+
['orange6318@hotmail.com']
|
16
|
+
|
17
|
+
s.files = `git ls-files`.split("\n")
|
18
|
+
s.test_files = `git ls-files -- spec/*`.split("\n")
|
19
|
+
s.executables << 'YPBT'
|
20
|
+
|
21
|
+
s.add_runtime_dependency 'http', '~> 2.0'
|
22
|
+
|
23
|
+
s.add_development_dependency 'minitest', '~> 5.9'
|
24
|
+
s.add_development_dependency 'minitest-rg', '~> 5.2'
|
25
|
+
s.add_development_dependency 'rake', '~> 11.3'
|
26
|
+
s.add_development_dependency 'vcr', '~> 3.0'
|
27
|
+
s.add_development_dependency 'webmock', '~> 2.1'
|
28
|
+
s.add_development_dependency 'simplecov', '~> 0.12'
|
29
|
+
s.add_development_dependency 'flog', '~> 4.4'
|
30
|
+
s.add_development_dependency 'flay', '~> 2.8'
|
31
|
+
s.add_development_dependency 'rubocop', '~> 0.42'
|
32
|
+
|
33
|
+
s.homepage = 'https://github.com/RubyStarts3/YPBT'
|
34
|
+
s.license = 'MIT'
|
35
|
+
end
|
data/bin/YPBT
ADDED
@@ -0,0 +1,24 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
# frozen_string_literal: true
|
3
|
+
$LOAD_PATH.unshift File.join(File.dirname(__FILE__), *%w(.. lib))
|
4
|
+
require 'YPBT'
|
5
|
+
|
6
|
+
video_id = ARGV[0]
|
7
|
+
unless video_id
|
8
|
+
puts 'USAGE: YPBT [video_id]'
|
9
|
+
exit(1)
|
10
|
+
end
|
11
|
+
|
12
|
+
video = YoutubeVideo::Video.find(video_id: video_id)
|
13
|
+
puts video.title
|
14
|
+
|
15
|
+
puts Array.new(video.title.length) { '-' }.join
|
16
|
+
video.commentthreads.first(3).each.with_index do |comment, index|
|
17
|
+
print "#{index + 1}. "
|
18
|
+
puts comment.author.author_name + ':'
|
19
|
+
puts comment.text_display
|
20
|
+
print 'LIKE: '
|
21
|
+
puts comment.author.like_count if comment.author.like_count
|
22
|
+
puts "AuthorChannelUrl: #{comment.author.author_channel_url}"
|
23
|
+
puts
|
24
|
+
end
|
data/lib/YPBT.rb
ADDED
data/lib/YPBT/author.rb
ADDED
@@ -0,0 +1,15 @@
|
|
1
|
+
# frozen_string_literal: tru
|
2
|
+
module YoutubeVideo
|
3
|
+
# comment's author infomation
|
4
|
+
class Author
|
5
|
+
attr_reader :author_name, :author_image_url, :author_channel_url,
|
6
|
+
:like_count
|
7
|
+
def initialize(data)
|
8
|
+
return unless data
|
9
|
+
@author_name = data[0]['snippet']['authorDisplayName']
|
10
|
+
@author_image_url = data[0]['snippet']['authorProfileImageUrl']
|
11
|
+
@author_channel_url = data[0]['snippet']['authorChannelUrl']
|
12
|
+
@like_count = data[0]['snippet']['likeCount']
|
13
|
+
end
|
14
|
+
end
|
15
|
+
end
|
data/lib/YPBT/comment.rb
ADDED
@@ -0,0 +1,35 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
require_relative 'comment'
|
3
|
+
require_relative 'youtube_api'
|
4
|
+
require_relative 'author'
|
5
|
+
|
6
|
+
module YoutubeVideo
|
7
|
+
# signle comment on video's comment threads
|
8
|
+
class Comment
|
9
|
+
attr_reader :comment_id, :updated_at, :text_display, :published_at
|
10
|
+
|
11
|
+
def initialize(data: nil)
|
12
|
+
load_data(data)
|
13
|
+
end
|
14
|
+
|
15
|
+
def author
|
16
|
+
return @author if @author
|
17
|
+
author_data = YtApi.authors_info(@comment_id)
|
18
|
+
@author = YoutubeVideo::Author.new(author_data)
|
19
|
+
end
|
20
|
+
|
21
|
+
def self.find(comment_id:)
|
22
|
+
comment_data = YoutubeVideo::YtApi.comment_info(comment_id)
|
23
|
+
new(data: comment_data)
|
24
|
+
end
|
25
|
+
|
26
|
+
private
|
27
|
+
|
28
|
+
def load_data(comment_data)
|
29
|
+
@comment_id = comment_data['id']
|
30
|
+
@updated_at = comment_data['snippet']['updateAt']
|
31
|
+
@text_display = comment_data['snippet']['textDisplay']
|
32
|
+
@published_at = comment_data['snippet']['publishedAt']
|
33
|
+
end
|
34
|
+
end
|
35
|
+
end
|
data/lib/YPBT/version.rb
ADDED
data/lib/YPBT/video.rb
ADDED
@@ -0,0 +1,30 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
require_relative 'comment'
|
3
|
+
require_relative 'youtube_api'
|
4
|
+
|
5
|
+
module YoutubeVideo
|
6
|
+
# Main class to setup a Video
|
7
|
+
class Video
|
8
|
+
attr_reader :title
|
9
|
+
|
10
|
+
def initialize(data:)
|
11
|
+
@title = data['snippet']['title']
|
12
|
+
@id = data['id']
|
13
|
+
end
|
14
|
+
|
15
|
+
def commentthreads
|
16
|
+
return @commentthreads if @commentthreads
|
17
|
+
raw_threads = YoutubeVideo::YtApi.video_commentthreads_info(@id)
|
18
|
+
@commentthreads = raw_threads.map do |comment|
|
19
|
+
YoutubeVideo::Comment.new(
|
20
|
+
data: comment['snippet']['topLevelComment']
|
21
|
+
)
|
22
|
+
end
|
23
|
+
end
|
24
|
+
|
25
|
+
def self.find(video_id:)
|
26
|
+
video_data = YoutubeVideo::YtApi.video_info(video_id)
|
27
|
+
new(data: video_data)
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
@@ -0,0 +1,61 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
require 'http'
|
3
|
+
require 'json'
|
4
|
+
|
5
|
+
module YoutubeVideo
|
6
|
+
# Service for all Youtube API calls
|
7
|
+
class YtApi
|
8
|
+
YT_URL = 'https://www.googleapis.com'
|
9
|
+
YT_COMPANY = 'youtube'
|
10
|
+
YT_COMPANY_URL = URI.join(YT_URL, "#{YT_COMPANY}/")
|
11
|
+
API_VER = 'v3'
|
12
|
+
YT_API_URL = URI.join(YT_COMPANY_URL, "#{API_VER}/")
|
13
|
+
|
14
|
+
def self.api_key
|
15
|
+
return @api_key if @api_key
|
16
|
+
@api_key = ENV['YOUTUBE_API_KEY']
|
17
|
+
end
|
18
|
+
|
19
|
+
def self.video_info(video_id)
|
20
|
+
field = 'items(id,snippet(channelId,description,publishedAt,title))'
|
21
|
+
video_response = HTTP.get(yt_resource_url('videos'),
|
22
|
+
params: { id: video_id,
|
23
|
+
key: api_key,
|
24
|
+
part: 'snippet',
|
25
|
+
fields: field })
|
26
|
+
JSON.parse(video_response.to_s)['items'].first
|
27
|
+
end
|
28
|
+
|
29
|
+
def self.video_commentthreads_info(video_id)
|
30
|
+
comment_threads_response = HTTP.get(yt_resource_url('commentThreads'),
|
31
|
+
params: { videoId: video_id,
|
32
|
+
key: api_key,
|
33
|
+
order: 'relevance',
|
34
|
+
part: 'snippet' })
|
35
|
+
JSON.parse(comment_threads_response.to_s)['items']
|
36
|
+
end
|
37
|
+
|
38
|
+
def self.comment_info(comment_id)
|
39
|
+
comment_response = HTTP.get(yt_resource_url('comments'),
|
40
|
+
params: { id: comment_id,
|
41
|
+
key: api_key,
|
42
|
+
part: 'snippet' })
|
43
|
+
JSON.parse(comment_response.to_s)['items'][0]
|
44
|
+
end
|
45
|
+
|
46
|
+
def self.authors_info(comment_id)
|
47
|
+
field = 'items(snippet(authorChannelId,authorChannelUrl,'\
|
48
|
+
'authorDisplayName,authorProfileImageUrl,likeCount))'
|
49
|
+
authors_response = HTTP.get(yt_resource_url('comments'),
|
50
|
+
params: { id: comment_id,
|
51
|
+
key: api_key,
|
52
|
+
part: 'snippet',
|
53
|
+
fields: field })
|
54
|
+
JSON.parse(authors_response.to_s)['items']
|
55
|
+
end
|
56
|
+
private_class_method
|
57
|
+
def self.yt_resource_url(resouce_name)
|
58
|
+
URI.join(YT_API_URL, resouce_name.to_s)
|
59
|
+
end
|
60
|
+
end
|
61
|
+
end
|
@@ -0,0 +1,1634 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: https://www.googleapis.com/youtube/v3/commentThreads?key=<API_KEY>&order=relevance&part=snippet&videoId=
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: ''
|
9
|
+
headers:
|
10
|
+
Connection:
|
11
|
+
- close
|
12
|
+
Host:
|
13
|
+
- www.googleapis.com
|
14
|
+
User-Agent:
|
15
|
+
- http.rb/2.0.3
|
16
|
+
response:
|
17
|
+
status:
|
18
|
+
code: 404
|
19
|
+
message: Not Found
|
20
|
+
headers:
|
21
|
+
Vary:
|
22
|
+
- Origin,Accept-Encoding
|
23
|
+
- X-Origin
|
24
|
+
Content-Type:
|
25
|
+
- application/json; charset=UTF-8
|
26
|
+
Date:
|
27
|
+
- Sun, 23 Oct 2016 12:58:45 GMT
|
28
|
+
Expires:
|
29
|
+
- Sun, 23 Oct 2016 12:58:45 GMT
|
30
|
+
Cache-Control:
|
31
|
+
- private, max-age=0
|
32
|
+
X-Content-Type-Options:
|
33
|
+
- nosniff
|
34
|
+
X-Frame-Options:
|
35
|
+
- SAMEORIGIN
|
36
|
+
X-Xss-Protection:
|
37
|
+
- 1; mode=block
|
38
|
+
Server:
|
39
|
+
- GSE
|
40
|
+
Alt-Svc:
|
41
|
+
- quic=":443"; ma=2592000; v="36,35,34,33,32"
|
42
|
+
Accept-Ranges:
|
43
|
+
- none
|
44
|
+
Connection:
|
45
|
+
- close
|
46
|
+
body:
|
47
|
+
encoding: UTF-8
|
48
|
+
string: |
|
49
|
+
{
|
50
|
+
"error": {
|
51
|
+
"errors": [
|
52
|
+
{
|
53
|
+
"domain": "youtube.commentThread",
|
54
|
+
"reason": "videoNotFound",
|
55
|
+
"message": "The video identified by the \u003ccode\u003e\u003ca href=\"/youtube/v3/docs/commentThreads/list#videoId\"\u003evideoId\u003c/a\u003e\u003c/code\u003e parameter could not be found.",
|
56
|
+
"locationType": "parameter",
|
57
|
+
"location": "videoId"
|
58
|
+
}
|
59
|
+
],
|
60
|
+
"code": 404,
|
61
|
+
"message": "The video identified by the \u003ccode\u003e\u003ca href=\"/youtube/v3/docs/commentThreads/list#videoId\"\u003evideoId\u003c/a\u003e\u003c/code\u003e parameter could not be found."
|
62
|
+
}
|
63
|
+
}
|
64
|
+
http_version:
|
65
|
+
recorded_at: Sun, 23 Oct 2016 12:58:45 GMT
|
66
|
+
- request:
|
67
|
+
method: get
|
68
|
+
uri: https://www.googleapis.com/youtube/v3/commentThreads?key=<API_KEY>&order=relevance&part=snippet&videoId=OyDSCKYz5sA
|
69
|
+
body:
|
70
|
+
encoding: US-ASCII
|
71
|
+
string: ''
|
72
|
+
headers:
|
73
|
+
Connection:
|
74
|
+
- close
|
75
|
+
Host:
|
76
|
+
- www.googleapis.com
|
77
|
+
User-Agent:
|
78
|
+
- http.rb/2.0.3
|
79
|
+
response:
|
80
|
+
status:
|
81
|
+
code: 200
|
82
|
+
message: OK
|
83
|
+
headers:
|
84
|
+
Expires:
|
85
|
+
- Sun, 23 Oct 2016 13:01:50 GMT
|
86
|
+
Date:
|
87
|
+
- Sun, 23 Oct 2016 13:01:50 GMT
|
88
|
+
Cache-Control:
|
89
|
+
- private, max-age=0, must-revalidate, no-transform
|
90
|
+
Etag:
|
91
|
+
- '"I_8xdZu766_FSaexEaDXTIfEWc0/0tYxCQgQrNPQtfK0swmPpbDkT8I"'
|
92
|
+
Vary:
|
93
|
+
- Origin
|
94
|
+
- X-Origin
|
95
|
+
Content-Type:
|
96
|
+
- application/json; charset=UTF-8
|
97
|
+
X-Content-Type-Options:
|
98
|
+
- nosniff
|
99
|
+
X-Frame-Options:
|
100
|
+
- SAMEORIGIN
|
101
|
+
X-Xss-Protection:
|
102
|
+
- 1; mode=block
|
103
|
+
Content-Length:
|
104
|
+
- '25454'
|
105
|
+
Server:
|
106
|
+
- GSE
|
107
|
+
Alt-Svc:
|
108
|
+
- quic=":443"; ma=2592000; v="36,35,34,33,32"
|
109
|
+
Connection:
|
110
|
+
- close
|
111
|
+
body:
|
112
|
+
encoding: UTF-8
|
113
|
+
string: |
|
114
|
+
{
|
115
|
+
"kind": "youtube#commentThreadListResponse",
|
116
|
+
"etag": "\"I_8xdZu766_FSaexEaDXTIfEWc0/0tYxCQgQrNPQtfK0swmPpbDkT8I\"",
|
117
|
+
"nextPageToken": "Cg0QjISth_7wzwIgACgBEsIBCAAQ6NOXxKfuzwIqtAHt4-PV_ruI5mGv_onP9unRvmDju8GTzse2uGG_n4HNgYPC22LL1eGOk6Cmt2GluJfB5Yz14GKHp5apne7p9mL7tcy1joii1mCFhNHx2t_xw2KZmuiU6_S2wGC1gOChy9mJx2Oj6Iv5gtmZ92GH6fy8sM2jmmKLtLXy6I6l02KH-azr2d-i0GDK6cfFkovC8mDy-6K96IKxpWGnueiI2qKJyGDqrp6Py7aqhmD4w7vd1POe5WMYASAUKJDA-9bJ_9vSdQ==",
|
118
|
+
"pageInfo": {
|
119
|
+
"totalResults": 20,
|
120
|
+
"resultsPerPage": 20
|
121
|
+
},
|
122
|
+
"items": [
|
123
|
+
{
|
124
|
+
"kind": "youtube#commentThread",
|
125
|
+
"etag": "\"I_8xdZu766_FSaexEaDXTIfEWc0/2aUC7ozfePnvjpL-bGpzar5Ux1Q\"",
|
126
|
+
"id": "z13xwdrrcsvhv3ttk221zdnzalv0jhu3w",
|
127
|
+
"snippet": {
|
128
|
+
"videoId": "OyDSCKYz5sA",
|
129
|
+
"topLevelComment": {
|
130
|
+
"kind": "youtube#comment",
|
131
|
+
"etag": "\"I_8xdZu766_FSaexEaDXTIfEWc0/BsHlUmLxBF-0o5cNfmEnim7zUGU\"",
|
132
|
+
"id": "z13xwdrrcsvhv3ttk221zdnzalv0jhu3w",
|
133
|
+
"snippet": {
|
134
|
+
"authorDisplayName": "TheVectorGuy",
|
135
|
+
"authorProfileImageUrl": "https://lh5.googleusercontent.com/-G4LBqo3OTGY/AAAAAAAAAAI/AAAAAAAAAHg/PrF_mVhPEBA/photo.jpg?sz=50",
|
136
|
+
"authorChannelUrl": "http://www.youtube.com/channel/UCwcUMfCaVww25AzyNZf-ngQ",
|
137
|
+
"authorChannelId": {
|
138
|
+
"value": "UCwcUMfCaVww25AzyNZf-ngQ"
|
139
|
+
},
|
140
|
+
"videoId": "OyDSCKYz5sA",
|
141
|
+
"textDisplay": "Hillary is sooooooooooooooooooooooooooooooooo\u003cbr /\u003e\u003cbr /\u003e\u003cbr /\u003e\u003cbr /\u003e⊂_ヽ\u003cbr /\u003e \\ _\u003cbr /\u003e \( •_•) H\u003cbr /\u003e < ⌒ヽ I\u003cbr /\u003e / へ\ L\u003cbr /\u003e / / \\ L\u003cbr /\u003e レ ノ ヽ_つ A\u003cbr /\u003e / / R\u003cbr /\u003e / / Y\u003cbr /\u003e ( (ヽ I\u003cbr /\u003e | |、\. O\u003cbr /\u003e | 丿 \ ⌒) U\u003cbr /\u003e | | ) / S\u003cbr /\u003e ノ ) Lノ__\u003cbr /\u003e(/___\ufeff",
|
142
|
+
"canRate": false,
|
143
|
+
"viewerRating": "none",
|
144
|
+
"likeCount": 42,
|
145
|
+
"publishedAt": "2016-10-19T21:12:22.000Z",
|
146
|
+
"updatedAt": "2016-10-19T21:12:22.000Z"
|
147
|
+
}
|
148
|
+
},
|
149
|
+
"canReply": false,
|
150
|
+
"totalReplyCount": 9,
|
151
|
+
"isPublic": true
|
152
|
+
}
|
153
|
+
},
|
154
|
+
{
|
155
|
+
"kind": "youtube#commentThread",
|
156
|
+
"etag": "\"I_8xdZu766_FSaexEaDXTIfEWc0/Hsw66DYbZEMXDVSjvpvYhIAOF4k\"",
|
157
|
+
"id": "z13nifmyjuu3v5ei304cedkpmyijwn2ydcw",
|
158
|
+
"snippet": {
|
159
|
+
"videoId": "OyDSCKYz5sA",
|
160
|
+
"topLevelComment": {
|
161
|
+
"kind": "youtube#comment",
|
162
|
+
"etag": "\"I_8xdZu766_FSaexEaDXTIfEWc0/0HPMbzMtGrU1X9sH1DQlMCd5M4Y\"",
|
163
|
+
"id": "z13nifmyjuu3v5ei304cedkpmyijwn2ydcw",
|
164
|
+
"snippet": {
|
165
|
+
"authorDisplayName": "Tomas Munoz",
|
166
|
+
"authorProfileImageUrl": "https://lh3.googleusercontent.com/-eSlmXBgSe78/AAAAAAAAAAI/AAAAAAAAABM/-yiojxptbtA/photo.jpg?sz=50",
|
167
|
+
"authorChannelUrl": "http://www.youtube.com/channel/UCpi3mcUtOOf1UrnNIbsnsZQ",
|
168
|
+
"authorChannelId": {
|
169
|
+
"value": "UCpi3mcUtOOf1UrnNIbsnsZQ"
|
170
|
+
},
|
171
|
+
"videoId": "OyDSCKYz5sA",
|
172
|
+
"textDisplay": "Is the USA a nation or just the world’s biggest comedy club? ....Just wondering-Canada.\ufeff",
|
173
|
+
"canRate": false,
|
174
|
+
"viewerRating": "none",
|
175
|
+
"likeCount": 289,
|
176
|
+
"publishedAt": "2016-10-15T03:25:38.000Z",
|
177
|
+
"updatedAt": "2016-10-15T03:25:38.000Z"
|
178
|
+
}
|
179
|
+
},
|
180
|
+
"canReply": false,
|
181
|
+
"totalReplyCount": 55,
|
182
|
+
"isPublic": true
|
183
|
+
}
|
184
|
+
},
|
185
|
+
{
|
186
|
+
"kind": "youtube#commentThread",
|
187
|
+
"etag": "\"I_8xdZu766_FSaexEaDXTIfEWc0/Ne3ArdPfAVWMCdeFGSys2MQHWSs\"",
|
188
|
+
"id": "z13tgn2qjmnet3pqp04ccpso4uybgbfhxp40k",
|
189
|
+
"snippet": {
|
190
|
+
"videoId": "OyDSCKYz5sA",
|
191
|
+
"topLevelComment": {
|
192
|
+
"kind": "youtube#comment",
|
193
|
+
"etag": "\"I_8xdZu766_FSaexEaDXTIfEWc0/DzNNWV8Gw_Kt62pytjpuvVJjrKM\"",
|
194
|
+
"id": "z13tgn2qjmnet3pqp04ccpso4uybgbfhxp40k",
|
195
|
+
"snippet": {
|
196
|
+
"authorDisplayName": "Thomas Begley",
|
197
|
+
"authorProfileImageUrl": "https://lh3.googleusercontent.com/-_NITfAbrdIo/AAAAAAAAAAI/AAAAAAAAAD8/BnE3caWWztc/photo.jpg?sz=50",
|
198
|
+
"authorChannelUrl": "http://www.youtube.com/channel/UCVWWWpMYzYFvOYeGEgDIYXQ",
|
199
|
+
"authorChannelId": {
|
200
|
+
"value": "UCVWWWpMYzYFvOYeGEgDIYXQ"
|
201
|
+
},
|
202
|
+
"videoId": "OyDSCKYz5sA",
|
203
|
+
"textDisplay": "This just confirms one thing....the world is ending...\ufeff",
|
204
|
+
"canRate": false,
|
205
|
+
"viewerRating": "none",
|
206
|
+
"likeCount": 74,
|
207
|
+
"publishedAt": "2016-10-17T02:14:19.000Z",
|
208
|
+
"updatedAt": "2016-10-17T02:14:19.000Z"
|
209
|
+
}
|
210
|
+
},
|
211
|
+
"canReply": false,
|
212
|
+
"totalReplyCount": 16,
|
213
|
+
"isPublic": true
|
214
|
+
}
|
215
|
+
},
|
216
|
+
{
|
217
|
+
"kind": "youtube#commentThread",
|
218
|
+
"etag": "\"I_8xdZu766_FSaexEaDXTIfEWc0/F9_BXFjKDD7VDJ14MMv97rdSuWg\"",
|
219
|
+
"id": "z13kshbh2x2bedm3323ejfqihzuddbwcc",
|
220
|
+
"snippet": {
|
221
|
+
"videoId": "OyDSCKYz5sA",
|
222
|
+
"topLevelComment": {
|
223
|
+
"kind": "youtube#comment",
|
224
|
+
"etag": "\"I_8xdZu766_FSaexEaDXTIfEWc0/5cG-rUe26o5kdVxl7Uq66-KznN4\"",
|
225
|
+
"id": "z13kshbh2x2bedm3323ejfqihzuddbwcc",
|
226
|
+
"snippet": {
|
227
|
+
"authorDisplayName": "cc22ful",
|
228
|
+
"authorProfileImageUrl": "https://lh3.googleusercontent.com/-XdUIqdMkCWA/AAAAAAAAAAI/AAAAAAAAAAA/4252rscbv5M/photo.jpg?sz=50",
|
229
|
+
"authorChannelUrl": "http://www.youtube.com/channel/UCziZIdQhMQrceM2re6uypbg",
|
230
|
+
"authorChannelId": {
|
231
|
+
"value": "UCziZIdQhMQrceM2re6uypbg"
|
232
|
+
},
|
233
|
+
"videoId": "OyDSCKYz5sA",
|
234
|
+
"textDisplay": "Can't we just vote for Obama again?\ufeff",
|
235
|
+
"canRate": false,
|
236
|
+
"viewerRating": "none",
|
237
|
+
"likeCount": 144,
|
238
|
+
"publishedAt": "2016-10-18T01:25:35.000Z",
|
239
|
+
"updatedAt": "2016-10-18T01:25:35.000Z"
|
240
|
+
}
|
241
|
+
},
|
242
|
+
"canReply": false,
|
243
|
+
"totalReplyCount": 23,
|
244
|
+
"isPublic": true
|
245
|
+
}
|
246
|
+
},
|
247
|
+
{
|
248
|
+
"kind": "youtube#commentThread",
|
249
|
+
"etag": "\"I_8xdZu766_FSaexEaDXTIfEWc0/qjpoiDC0_JcPxi1Fivn-EIYAbdU\"",
|
250
|
+
"id": "z12lcdwbasa5tre3x231hp2hlpffwjclg",
|
251
|
+
"snippet": {
|
252
|
+
"videoId": "OyDSCKYz5sA",
|
253
|
+
"topLevelComment": {
|
254
|
+
"kind": "youtube#comment",
|
255
|
+
"etag": "\"I_8xdZu766_FSaexEaDXTIfEWc0/vA428jKXfC26Q3Z5OsMRimlT1tU\"",
|
256
|
+
"id": "z12lcdwbasa5tre3x231hp2hlpffwjclg",
|
257
|
+
"snippet": {
|
258
|
+
"authorDisplayName": "TheBookWorm1718",
|
259
|
+
"authorProfileImageUrl": "https://lh3.googleusercontent.com/-XdUIqdMkCWA/AAAAAAAAAAI/AAAAAAAAAAA/4252rscbv5M/photo.jpg?sz=50",
|
260
|
+
"authorChannelUrl": "http://www.youtube.com/channel/UCrCAs9q7UhO3VIroUHiMwmA",
|
261
|
+
"authorChannelId": {
|
262
|
+
"value": "UCrCAs9q7UhO3VIroUHiMwmA"
|
263
|
+
},
|
264
|
+
"videoId": "OyDSCKYz5sA",
|
265
|
+
"textDisplay": "Think about this, people, Hillary is already having mainstream media CENSORED, as in something we as Americans are supposed to be AGAINST, if she becomes president what's going to stop her from completely outlawing any news coming out that speaks out against her?\ufeff",
|
266
|
+
"canRate": false,
|
267
|
+
"viewerRating": "none",
|
268
|
+
"likeCount": 47,
|
269
|
+
"publishedAt": "2016-10-15T14:58:16.000Z",
|
270
|
+
"updatedAt": "2016-10-15T14:58:16.000Z"
|
271
|
+
}
|
272
|
+
},
|
273
|
+
"canReply": false,
|
274
|
+
"totalReplyCount": 12,
|
275
|
+
"isPublic": true
|
276
|
+
}
|
277
|
+
},
|
278
|
+
{
|
279
|
+
"kind": "youtube#commentThread",
|
280
|
+
"etag": "\"I_8xdZu766_FSaexEaDXTIfEWc0/EhzvHT_HpVx1agjeNXtUk44rIig\"",
|
281
|
+
"id": "z12mgn35ymy0s1p2t23hxf3qzrfczfh5r04",
|
282
|
+
"snippet": {
|
283
|
+
"videoId": "OyDSCKYz5sA",
|
284
|
+
"topLevelComment": {
|
285
|
+
"kind": "youtube#comment",
|
286
|
+
"etag": "\"I_8xdZu766_FSaexEaDXTIfEWc0/KrWUimKAiAvYnsQfr5F7yqO602s\"",
|
287
|
+
"id": "z12mgn35ymy0s1p2t23hxf3qzrfczfh5r04",
|
288
|
+
"snippet": {
|
289
|
+
"authorDisplayName": "Cactus Jack",
|
290
|
+
"authorProfileImageUrl": "https://lh6.googleusercontent.com/-q0j4EQ62L5Y/AAAAAAAAAAI/AAAAAAAAABY/0wjhz4gCeo8/photo.jpg?sz=50",
|
291
|
+
"authorChannelUrl": "http://www.youtube.com/channel/UCiRVbxC34JWy0nDsuJieWfA",
|
292
|
+
"authorChannelId": {
|
293
|
+
"value": "UCiRVbxC34JWy0nDsuJieWfA"
|
294
|
+
},
|
295
|
+
"videoId": "OyDSCKYz5sA",
|
296
|
+
"textDisplay": "why do they interrupt him but not her?\ufeff",
|
297
|
+
"canRate": false,
|
298
|
+
"viewerRating": "none",
|
299
|
+
"likeCount": 72,
|
300
|
+
"publishedAt": "2016-10-20T03:52:13.000Z",
|
301
|
+
"updatedAt": "2016-10-20T03:52:13.000Z"
|
302
|
+
}
|
303
|
+
},
|
304
|
+
"canReply": false,
|
305
|
+
"totalReplyCount": 8,
|
306
|
+
"isPublic": true
|
307
|
+
}
|
308
|
+
},
|
309
|
+
{
|
310
|
+
"kind": "youtube#commentThread",
|
311
|
+
"etag": "\"I_8xdZu766_FSaexEaDXTIfEWc0/aFVsXx8BCLzoFi_BxaXz0wGoZpM\"",
|
312
|
+
"id": "z131w1g44nrhyblwj04cinl44zrmszmjamc0k",
|
313
|
+
"snippet": {
|
314
|
+
"videoId": "OyDSCKYz5sA",
|
315
|
+
"topLevelComment": {
|
316
|
+
"kind": "youtube#comment",
|
317
|
+
"etag": "\"I_8xdZu766_FSaexEaDXTIfEWc0/sZfumz-wihoBRVJurZhupy7Q-FI\"",
|
318
|
+
"id": "z131w1g44nrhyblwj04cinl44zrmszmjamc0k",
|
319
|
+
"snippet": {
|
320
|
+
"authorDisplayName": "David Chhangte",
|
321
|
+
"authorProfileImageUrl": "https://lh6.googleusercontent.com/-zIGtbdjt3pM/AAAAAAAAAAI/AAAAAAAAAHg/nfoi1V6akcI/photo.jpg?sz=50",
|
322
|
+
"authorChannelUrl": "http://www.youtube.com/channel/UCPHkEKG8vHP3RnIkfIrk22w",
|
323
|
+
"authorChannelId": {
|
324
|
+
"value": "UCPHkEKG8vHP3RnIkfIrk22w"
|
325
|
+
},
|
326
|
+
"videoId": "OyDSCKYz5sA",
|
327
|
+
"textDisplay": "hillary will lie to americans as long as she recieves money from the middle east... she loves money, not america..\ufeff",
|
328
|
+
"canRate": false,
|
329
|
+
"viewerRating": "none",
|
330
|
+
"likeCount": 95,
|
331
|
+
"publishedAt": "2016-10-16T18:45:00.000Z",
|
332
|
+
"updatedAt": "2016-10-16T18:45:00.000Z"
|
333
|
+
}
|
334
|
+
},
|
335
|
+
"canReply": false,
|
336
|
+
"totalReplyCount": 19,
|
337
|
+
"isPublic": true
|
338
|
+
}
|
339
|
+
},
|
340
|
+
{
|
341
|
+
"kind": "youtube#commentThread",
|
342
|
+
"etag": "\"I_8xdZu766_FSaexEaDXTIfEWc0/5x32CUK-9P5jQyRf_bTalCNnMNo\"",
|
343
|
+
"id": "z13ce1vzexjtg5b0k23hur3hvzytinqes",
|
344
|
+
"snippet": {
|
345
|
+
"videoId": "OyDSCKYz5sA",
|
346
|
+
"topLevelComment": {
|
347
|
+
"kind": "youtube#comment",
|
348
|
+
"etag": "\"I_8xdZu766_FSaexEaDXTIfEWc0/bYfyR-Vc8OjahNEXB1lyM2tyhJU\"",
|
349
|
+
"id": "z13ce1vzexjtg5b0k23hur3hvzytinqes",
|
350
|
+
"snippet": {
|
351
|
+
"authorDisplayName": "Gartin Marrix",
|
352
|
+
"authorProfileImageUrl": "https://lh3.googleusercontent.com/-tGbx299iYOc/AAAAAAAAAAI/AAAAAAAAABE/OHiuK9LIV9Q/photo.jpg?sz=50",
|
353
|
+
"authorChannelUrl": "http://www.youtube.com/channel/UC1Ry32WXiI1NUudDNgBkGwA",
|
354
|
+
"authorChannelId": {
|
355
|
+
"value": "UC1Ry32WXiI1NUudDNgBkGwA"
|
356
|
+
},
|
357
|
+
"videoId": "OyDSCKYz5sA",
|
358
|
+
"textDisplay": "I don't know, from a neutral point of view, Trump seems like a little bit crazy, but simple and direct man, who puts actions before words. Hillary seems perverse and false, all the time :-/\ufeff",
|
359
|
+
"canRate": false,
|
360
|
+
"viewerRating": "none",
|
361
|
+
"likeCount": 39,
|
362
|
+
"publishedAt": "2016-10-16T21:15:01.000Z",
|
363
|
+
"updatedAt": "2016-10-16T21:15:01.000Z"
|
364
|
+
}
|
365
|
+
},
|
366
|
+
"canReply": false,
|
367
|
+
"totalReplyCount": 8,
|
368
|
+
"isPublic": true
|
369
|
+
}
|
370
|
+
},
|
371
|
+
{
|
372
|
+
"kind": "youtube#commentThread",
|
373
|
+
"etag": "\"I_8xdZu766_FSaexEaDXTIfEWc0/3yIeAApgNlVoj4Ie0TSUDgywSgc\"",
|
374
|
+
"id": "z13egjcxjzf3cl3ny23ng33gsu2ktzwuw",
|
375
|
+
"snippet": {
|
376
|
+
"videoId": "OyDSCKYz5sA",
|
377
|
+
"topLevelComment": {
|
378
|
+
"kind": "youtube#comment",
|
379
|
+
"etag": "\"I_8xdZu766_FSaexEaDXTIfEWc0/ajDNA3OZfp9QGA95VpQhMM2wYlM\"",
|
380
|
+
"id": "z13egjcxjzf3cl3ny23ng33gsu2ktzwuw",
|
381
|
+
"snippet": {
|
382
|
+
"authorDisplayName": "Ronald Clark",
|
383
|
+
"authorProfileImageUrl": "https://lh3.googleusercontent.com/-XdUIqdMkCWA/AAAAAAAAAAI/AAAAAAAAAAA/4252rscbv5M/photo.jpg?sz=50",
|
384
|
+
"authorChannelUrl": "http://www.youtube.com/channel/UCORGSksLT_Ia9LnL06K1UAA",
|
385
|
+
"authorChannelId": {
|
386
|
+
"value": "UCORGSksLT_Ia9LnL06K1UAA"
|
387
|
+
},
|
388
|
+
"videoId": "OyDSCKYz5sA",
|
389
|
+
"textDisplay": "mrs clinton is saying he dont respect women for locker room talk n he appologised.. what about mr clinton.. why u r not talking about that..\ufeff",
|
390
|
+
"canRate": false,
|
391
|
+
"viewerRating": "none",
|
392
|
+
"likeCount": 20,
|
393
|
+
"publishedAt": "2016-10-19T18:02:38.000Z",
|
394
|
+
"updatedAt": "2016-10-19T18:02:38.000Z"
|
395
|
+
}
|
396
|
+
},
|
397
|
+
"canReply": false,
|
398
|
+
"totalReplyCount": 13,
|
399
|
+
"isPublic": true
|
400
|
+
}
|
401
|
+
},
|
402
|
+
{
|
403
|
+
"kind": "youtube#commentThread",
|
404
|
+
"etag": "\"I_8xdZu766_FSaexEaDXTIfEWc0/a2ZhIVMFdYKQUhXMYfROo1uIarA\"",
|
405
|
+
"id": "z13dxxeber3diruuo22pgzoxgmbfdfkn2",
|
406
|
+
"snippet": {
|
407
|
+
"videoId": "OyDSCKYz5sA",
|
408
|
+
"topLevelComment": {
|
409
|
+
"kind": "youtube#comment",
|
410
|
+
"etag": "\"I_8xdZu766_FSaexEaDXTIfEWc0/bcBzb9QldRpnE4tPDelFeGTWPfQ\"",
|
411
|
+
"id": "z13dxxeber3diruuo22pgzoxgmbfdfkn2",
|
412
|
+
"snippet": {
|
413
|
+
"authorDisplayName": "Tekka Bunny",
|
414
|
+
"authorProfileImageUrl": "https://lh4.googleusercontent.com/-fbnme6-Z3fw/AAAAAAAAAAI/AAAAAAAAD2w/1ZpIBuSGmLU/photo.jpg?sz=50",
|
415
|
+
"authorChannelUrl": "http://www.youtube.com/channel/UCZgzfj9DZOfjBebEya_VM7Q",
|
416
|
+
"authorChannelId": {
|
417
|
+
"value": "UCZgzfj9DZOfjBebEya_VM7Q"
|
418
|
+
},
|
419
|
+
"videoId": "OyDSCKYz5sA",
|
420
|
+
"textDisplay": "Did she say our country is great because we are good!!!!! LIER!!!!\ufeff",
|
421
|
+
"canRate": false,
|
422
|
+
"viewerRating": "none",
|
423
|
+
"likeCount": 108,
|
424
|
+
"publishedAt": "2016-10-15T17:37:47.000Z",
|
425
|
+
"updatedAt": "2016-10-15T17:37:47.000Z"
|
426
|
+
}
|
427
|
+
},
|
428
|
+
"canReply": false,
|
429
|
+
"totalReplyCount": 24,
|
430
|
+
"isPublic": true
|
431
|
+
}
|
432
|
+
},
|
433
|
+
{
|
434
|
+
"kind": "youtube#commentThread",
|
435
|
+
"etag": "\"I_8xdZu766_FSaexEaDXTIfEWc0/kpfTi112Upj2BIejdZwFqlwc-6g\"",
|
436
|
+
"id": "z125snoawkj4slr4v04cg1w50puevregkkg0k",
|
437
|
+
"snippet": {
|
438
|
+
"videoId": "OyDSCKYz5sA",
|
439
|
+
"topLevelComment": {
|
440
|
+
"kind": "youtube#comment",
|
441
|
+
"etag": "\"I_8xdZu766_FSaexEaDXTIfEWc0/Iiw2bVLYH6f-7oTXMcGsqHRaUTU\"",
|
442
|
+
"id": "z125snoawkj4slr4v04cg1w50puevregkkg0k",
|
443
|
+
"snippet": {
|
444
|
+
"authorDisplayName": "Whatever",
|
445
|
+
"authorProfileImageUrl": "https://lh5.googleusercontent.com/-SmTrqY4rLho/AAAAAAAAAAI/AAAAAAAAAIE/txfK4DF2Ow0/photo.jpg?sz=50",
|
446
|
+
"authorChannelUrl": "http://www.youtube.com/channel/UCS3JTtQRUlGttCtbkLGhXWg",
|
447
|
+
"authorChannelId": {
|
448
|
+
"value": "UCS3JTtQRUlGttCtbkLGhXWg"
|
449
|
+
},
|
450
|
+
"videoId": "OyDSCKYz5sA",
|
451
|
+
"textDisplay": "I'm from the Netherlands, and I say Trump is the best!!\ufeff",
|
452
|
+
"canRate": false,
|
453
|
+
"viewerRating": "none",
|
454
|
+
"likeCount": 144,
|
455
|
+
"publishedAt": "2016-10-16T09:37:45.000Z",
|
456
|
+
"updatedAt": "2016-10-17T11:31:54.000Z"
|
457
|
+
}
|
458
|
+
},
|
459
|
+
"canReply": false,
|
460
|
+
"totalReplyCount": 28,
|
461
|
+
"isPublic": true
|
462
|
+
}
|
463
|
+
},
|
464
|
+
{
|
465
|
+
"kind": "youtube#commentThread",
|
466
|
+
"etag": "\"I_8xdZu766_FSaexEaDXTIfEWc0/wCUk1v0s3VgeC5nEPQWl_DLwlUs\"",
|
467
|
+
"id": "z13hilnactvdd3twc04cgrnzipach5jx150",
|
468
|
+
"snippet": {
|
469
|
+
"videoId": "OyDSCKYz5sA",
|
470
|
+
"topLevelComment": {
|
471
|
+
"kind": "youtube#comment",
|
472
|
+
"etag": "\"I_8xdZu766_FSaexEaDXTIfEWc0/8e_KH6X5Cng3GDE-4bPuAjlGFHE\"",
|
473
|
+
"id": "z13hilnactvdd3twc04cgrnzipach5jx150",
|
474
|
+
"snippet": {
|
475
|
+
"authorDisplayName": "Mudi Guo",
|
476
|
+
"authorProfileImageUrl": "https://lh3.googleusercontent.com/-XdUIqdMkCWA/AAAAAAAAAAI/AAAAAAAAAAA/4252rscbv5M/photo.jpg?sz=50",
|
477
|
+
"authorChannelUrl": "http://www.youtube.com/channel/UCClwEEDPUrULjwQDiJVH43A",
|
478
|
+
"authorChannelId": {
|
479
|
+
"value": "UCClwEEDPUrULjwQDiJVH43A"
|
480
|
+
},
|
481
|
+
"videoId": "OyDSCKYz5sA",
|
482
|
+
"textDisplay": "her smile... it looks so phoney for some reason\ufeff",
|
483
|
+
"canRate": false,
|
484
|
+
"viewerRating": "none",
|
485
|
+
"likeCount": 5,
|
486
|
+
"publishedAt": "2016-10-21T14:06:52.000Z",
|
487
|
+
"updatedAt": "2016-10-21T14:06:52.000Z"
|
488
|
+
}
|
489
|
+
},
|
490
|
+
"canReply": false,
|
491
|
+
"totalReplyCount": 3,
|
492
|
+
"isPublic": true
|
493
|
+
}
|
494
|
+
},
|
495
|
+
{
|
496
|
+
"kind": "youtube#commentThread",
|
497
|
+
"etag": "\"I_8xdZu766_FSaexEaDXTIfEWc0/wNgDOP2eH_2nXv6ifE39Ftg7AH0\"",
|
498
|
+
"id": "z12yg1aajzmufd33k23ejpz43nj2sbqlp",
|
499
|
+
"snippet": {
|
500
|
+
"videoId": "OyDSCKYz5sA",
|
501
|
+
"topLevelComment": {
|
502
|
+
"kind": "youtube#comment",
|
503
|
+
"etag": "\"I_8xdZu766_FSaexEaDXTIfEWc0/39i0ULBMLGPftwXE16e9XvXrjng\"",
|
504
|
+
"id": "z12yg1aajzmufd33k23ejpz43nj2sbqlp",
|
505
|
+
"snippet": {
|
506
|
+
"authorDisplayName": "A. C.",
|
507
|
+
"authorProfileImageUrl": "https://lh3.googleusercontent.com/-XdUIqdMkCWA/AAAAAAAAAAI/AAAAAAAAAAA/4252rscbv5M/photo.jpg?sz=50",
|
508
|
+
"authorChannelUrl": "http://www.youtube.com/channel/UCWGyxlzCdwtNdDSl915tZ8w",
|
509
|
+
"authorChannelId": {
|
510
|
+
"value": "UCWGyxlzCdwtNdDSl915tZ8w"
|
511
|
+
},
|
512
|
+
"videoId": "OyDSCKYz5sA",
|
513
|
+
"textDisplay": "Many things Trump says are crazy but true, and in times like this I choose crazy over corrupt cunt\ufeff",
|
514
|
+
"canRate": false,
|
515
|
+
"viewerRating": "none",
|
516
|
+
"likeCount": 61,
|
517
|
+
"publishedAt": "2016-10-20T03:15:07.000Z",
|
518
|
+
"updatedAt": "2016-10-20T03:15:07.000Z"
|
519
|
+
}
|
520
|
+
},
|
521
|
+
"canReply": false,
|
522
|
+
"totalReplyCount": 4,
|
523
|
+
"isPublic": true
|
524
|
+
}
|
525
|
+
},
|
526
|
+
{
|
527
|
+
"kind": "youtube#commentThread",
|
528
|
+
"etag": "\"I_8xdZu766_FSaexEaDXTIfEWc0/fEtRzMaunAwoudUfT0isVIlz08w\"",
|
529
|
+
"id": "z135enpypyrzetxmp23dvdso4zjhvhlii04",
|
530
|
+
"snippet": {
|
531
|
+
"videoId": "OyDSCKYz5sA",
|
532
|
+
"topLevelComment": {
|
533
|
+
"kind": "youtube#comment",
|
534
|
+
"etag": "\"I_8xdZu766_FSaexEaDXTIfEWc0/na74rWWtru54AyHOeSWAoQ_iWs4\"",
|
535
|
+
"id": "z135enpypyrzetxmp23dvdso4zjhvhlii04",
|
536
|
+
"snippet": {
|
537
|
+
"authorDisplayName": "BlackSheep Santana",
|
538
|
+
"authorProfileImageUrl": "https://lh3.googleusercontent.com/-XdUIqdMkCWA/AAAAAAAAAAI/AAAAAAAAAAA/4252rscbv5M/photo.jpg?sz=50",
|
539
|
+
"authorChannelUrl": "http://www.youtube.com/channel/UCk3ToMAS8BnmwEy1CEC_dtQ",
|
540
|
+
"authorChannelId": {
|
541
|
+
"value": "UCk3ToMAS8BnmwEy1CEC_dtQ"
|
542
|
+
},
|
543
|
+
"videoId": "OyDSCKYz5sA",
|
544
|
+
"textDisplay": "bruh.... no matter who we vote for...America is fucked.... simple..\ufeff",
|
545
|
+
"canRate": false,
|
546
|
+
"viewerRating": "none",
|
547
|
+
"likeCount": 13,
|
548
|
+
"publishedAt": "2016-10-21T17:04:46.000Z",
|
549
|
+
"updatedAt": "2016-10-21T17:04:46.000Z"
|
550
|
+
}
|
551
|
+
},
|
552
|
+
"canReply": false,
|
553
|
+
"totalReplyCount": 6,
|
554
|
+
"isPublic": true
|
555
|
+
}
|
556
|
+
},
|
557
|
+
{
|
558
|
+
"kind": "youtube#commentThread",
|
559
|
+
"etag": "\"I_8xdZu766_FSaexEaDXTIfEWc0/wJegovn0bsrralmu_o6PmG8hG_M\"",
|
560
|
+
"id": "z12lyhg4irfhv5e1a23yz3rjupuovj4cp",
|
561
|
+
"snippet": {
|
562
|
+
"videoId": "OyDSCKYz5sA",
|
563
|
+
"topLevelComment": {
|
564
|
+
"kind": "youtube#comment",
|
565
|
+
"etag": "\"I_8xdZu766_FSaexEaDXTIfEWc0/_KcDkKRXN5dCs5UWM9ne0wl-CFk\"",
|
566
|
+
"id": "z12lyhg4irfhv5e1a23yz3rjupuovj4cp",
|
567
|
+
"snippet": {
|
568
|
+
"authorDisplayName": "luckyshottzZZ",
|
569
|
+
"authorProfileImageUrl": "https://lh3.googleusercontent.com/-XdUIqdMkCWA/AAAAAAAAAAI/AAAAAAAAAAA/4252rscbv5M/photo.jpg?sz=50",
|
570
|
+
"authorChannelUrl": "http://www.youtube.com/channel/UCq2ebmIdpW5F4UWoqIf3vzA",
|
571
|
+
"authorChannelId": {
|
572
|
+
"value": "UCq2ebmIdpW5F4UWoqIf3vzA"
|
573
|
+
},
|
574
|
+
"videoId": "OyDSCKYz5sA",
|
575
|
+
"textDisplay": "When you look back many years at hillary and trump, hillary has changed most of her views according to what people believe, to get votes etc. Donald trump has had the same ideas and goals and hasnt really changed anything.\ufeff",
|
576
|
+
"canRate": false,
|
577
|
+
"viewerRating": "none",
|
578
|
+
"likeCount": 34,
|
579
|
+
"publishedAt": "2016-10-17T15:31:53.000Z",
|
580
|
+
"updatedAt": "2016-10-17T15:31:53.000Z"
|
581
|
+
}
|
582
|
+
},
|
583
|
+
"canReply": false,
|
584
|
+
"totalReplyCount": 4,
|
585
|
+
"isPublic": true
|
586
|
+
}
|
587
|
+
},
|
588
|
+
{
|
589
|
+
"kind": "youtube#commentThread",
|
590
|
+
"etag": "\"I_8xdZu766_FSaexEaDXTIfEWc0/ggPoMUrc3sZc5t9hhBOVaLL5XKc\"",
|
591
|
+
"id": "z134xtjrwl2lznwj104cendj3kmhvzfqdbw",
|
592
|
+
"snippet": {
|
593
|
+
"videoId": "OyDSCKYz5sA",
|
594
|
+
"topLevelComment": {
|
595
|
+
"kind": "youtube#comment",
|
596
|
+
"etag": "\"I_8xdZu766_FSaexEaDXTIfEWc0/vUycVauueYDNFkm0ZZXAVF2NgqM\"",
|
597
|
+
"id": "z134xtjrwl2lznwj104cendj3kmhvzfqdbw",
|
598
|
+
"snippet": {
|
599
|
+
"authorDisplayName": "Brad Smith",
|
600
|
+
"authorProfileImageUrl": "https://lh3.googleusercontent.com/-Vtmy_c8YdSE/AAAAAAAAAAI/AAAAAAAAAFw/KDHVEoHn21w/photo.jpg?sz=50",
|
601
|
+
"authorChannelUrl": "http://www.youtube.com/channel/UCNCPii5grMs2mZ7DYr5pOqw",
|
602
|
+
"authorChannelId": {
|
603
|
+
"value": "UCNCPii5grMs2mZ7DYr5pOqw"
|
604
|
+
},
|
605
|
+
"videoId": "OyDSCKYz5sA",
|
606
|
+
"textDisplay": "How many women did Bill Clinton (Hillary's husband) rape? Thumbs up if you believe Bill (Clinton/Cosby) are rapists!\ufeff",
|
607
|
+
"canRate": false,
|
608
|
+
"viewerRating": "none",
|
609
|
+
"likeCount": 140,
|
610
|
+
"publishedAt": "2016-10-16T10:31:38.000Z",
|
611
|
+
"updatedAt": "2016-10-16T10:31:38.000Z"
|
612
|
+
}
|
613
|
+
},
|
614
|
+
"canReply": false,
|
615
|
+
"totalReplyCount": 43,
|
616
|
+
"isPublic": true
|
617
|
+
}
|
618
|
+
},
|
619
|
+
{
|
620
|
+
"kind": "youtube#commentThread",
|
621
|
+
"etag": "\"I_8xdZu766_FSaexEaDXTIfEWc0/0t2D8GlVZRcdpP8C4nu7QgSyfdk\"",
|
622
|
+
"id": "z133zljz4syjgdfgr04ce5mjdxmycruzjqc0k",
|
623
|
+
"snippet": {
|
624
|
+
"videoId": "OyDSCKYz5sA",
|
625
|
+
"topLevelComment": {
|
626
|
+
"kind": "youtube#comment",
|
627
|
+
"etag": "\"I_8xdZu766_FSaexEaDXTIfEWc0/U0okYaxUKsLuGIEY6MjCHPqLFn8\"",
|
628
|
+
"id": "z133zljz4syjgdfgr04ce5mjdxmycruzjqc0k",
|
629
|
+
"snippet": {
|
630
|
+
"authorDisplayName": "Kevin Koen (Error 404)",
|
631
|
+
"authorProfileImageUrl": "https://lh4.googleusercontent.com/-5ri7VjovO-M/AAAAAAAAAAI/AAAAAAAAAH8/nVpwwk87yrY/photo.jpg?sz=50",
|
632
|
+
"authorChannelUrl": "http://www.youtube.com/channel/UC6x-goCqm1GFV9sKYueCDJQ",
|
633
|
+
"authorChannelId": {
|
634
|
+
"value": "UC6x-goCqm1GFV9sKYueCDJQ"
|
635
|
+
},
|
636
|
+
"videoId": "OyDSCKYz5sA",
|
637
|
+
"textDisplay": "is it just me or is it hilarious to watch america`s debates between these 2 nuttheads\ufeff",
|
638
|
+
"canRate": false,
|
639
|
+
"viewerRating": "none",
|
640
|
+
"likeCount": 6,
|
641
|
+
"publishedAt": "2016-10-22T11:29:24.000Z",
|
642
|
+
"updatedAt": "2016-10-22T11:29:24.000Z"
|
643
|
+
}
|
644
|
+
},
|
645
|
+
"canReply": false,
|
646
|
+
"totalReplyCount": 1,
|
647
|
+
"isPublic": true
|
648
|
+
}
|
649
|
+
},
|
650
|
+
{
|
651
|
+
"kind": "youtube#commentThread",
|
652
|
+
"etag": "\"I_8xdZu766_FSaexEaDXTIfEWc0/5Dl6wJwuSFr2jIYpQjSOES8wt-s\"",
|
653
|
+
"id": "z122wdi42quvchm3122cfffiswinzrelr",
|
654
|
+
"snippet": {
|
655
|
+
"videoId": "OyDSCKYz5sA",
|
656
|
+
"topLevelComment": {
|
657
|
+
"kind": "youtube#comment",
|
658
|
+
"etag": "\"I_8xdZu766_FSaexEaDXTIfEWc0/lCITUsIsCn6eChoYFHfJgJjFzTQ\"",
|
659
|
+
"id": "z122wdi42quvchm3122cfffiswinzrelr",
|
660
|
+
"snippet": {
|
661
|
+
"authorDisplayName": "Indra Windiardi",
|
662
|
+
"authorProfileImageUrl": "https://lh4.googleusercontent.com/-iC4RUeooOmo/AAAAAAAAAAI/AAAAAAAAAQU/lIiG4EucUmg/photo.jpg?sz=50",
|
663
|
+
"authorChannelUrl": "http://www.youtube.com/channel/UCb3wln4sRmgP8sa5Kpj-lYw",
|
664
|
+
"authorChannelId": {
|
665
|
+
"value": "UCb3wln4sRmgP8sa5Kpj-lYw"
|
666
|
+
},
|
667
|
+
"videoId": "OyDSCKYz5sA",
|
668
|
+
"textDisplay": "do you Americans actually have better candidates than these two? any newer faces/ younger/ brighter idea? 1/4 of this debate just sex sex and sex, lol\ufeff",
|
669
|
+
"canRate": false,
|
670
|
+
"viewerRating": "none",
|
671
|
+
"likeCount": 54,
|
672
|
+
"publishedAt": "2016-10-15T03:36:25.000Z",
|
673
|
+
"updatedAt": "2016-10-15T03:43:14.000Z"
|
674
|
+
}
|
675
|
+
},
|
676
|
+
"canReply": false,
|
677
|
+
"totalReplyCount": 11,
|
678
|
+
"isPublic": true
|
679
|
+
}
|
680
|
+
},
|
681
|
+
{
|
682
|
+
"kind": "youtube#commentThread",
|
683
|
+
"etag": "\"I_8xdZu766_FSaexEaDXTIfEWc0/zUCF82K4PtSnA2v3pCjDvZ4y_FY\"",
|
684
|
+
"id": "z12atdlb3nvghvjak04ccpgiarigddsr0oc0k",
|
685
|
+
"snippet": {
|
686
|
+
"videoId": "OyDSCKYz5sA",
|
687
|
+
"topLevelComment": {
|
688
|
+
"kind": "youtube#comment",
|
689
|
+
"etag": "\"I_8xdZu766_FSaexEaDXTIfEWc0/hxYTUAK6QOMQIV5N55NifZ7x3oY\"",
|
690
|
+
"id": "z12atdlb3nvghvjak04ccpgiarigddsr0oc0k",
|
691
|
+
"snippet": {
|
692
|
+
"authorDisplayName": "Nepheista Solace",
|
693
|
+
"authorProfileImageUrl": "https://lh4.googleusercontent.com/--cgi3JZBioo/AAAAAAAAAAI/AAAAAAAAAEs/GXlPRGiE5p0/photo.jpg?sz=50",
|
694
|
+
"authorChannelUrl": "http://www.youtube.com/channel/UCbY_3GW5r_jaJiqpQoF8yvg",
|
695
|
+
"authorChannelId": {
|
696
|
+
"value": "UCbY_3GW5r_jaJiqpQoF8yvg"
|
697
|
+
},
|
698
|
+
"videoId": "OyDSCKYz5sA",
|
699
|
+
"textDisplay": "I will put my hands up and admit that in the beginning i used to really not like Trump because of all the things people were saying about him and now as i have learnt the truth and that the things people were saying were not true, I am proud to say that i like him now :) He will be a true president and yes i believe he will make America Great Again. Hillary won't. She'll bring world war 3! Trump apologized for the way he was in that recording and to be honest that is nothing compared to what Hillary and Bill have done. If you ask me i'd be scared if Hillary became president she has already said she wants to attack Russia! Trump isn't a threat to this world Hillary damn well is, so guys get some sense and vote for Trump. Hillary isn't going to make America great again, she will destroy America!\ufeff",
|
700
|
+
"canRate": false,
|
701
|
+
"viewerRating": "none",
|
702
|
+
"likeCount": 35,
|
703
|
+
"publishedAt": "2016-10-19T09:13:28.000Z",
|
704
|
+
"updatedAt": "2016-10-19T09:13:28.000Z"
|
705
|
+
}
|
706
|
+
},
|
707
|
+
"canReply": false,
|
708
|
+
"totalReplyCount": 3,
|
709
|
+
"isPublic": true
|
710
|
+
}
|
711
|
+
},
|
712
|
+
{
|
713
|
+
"kind": "youtube#commentThread",
|
714
|
+
"etag": "\"I_8xdZu766_FSaexEaDXTIfEWc0/99R-JC-i3AYgwoOz-NvM_ztUKBk\"",
|
715
|
+
"id": "z134i3mbgnrtf1ac222otzj50v2ig14cc",
|
716
|
+
"snippet": {
|
717
|
+
"videoId": "OyDSCKYz5sA",
|
718
|
+
"topLevelComment": {
|
719
|
+
"kind": "youtube#comment",
|
720
|
+
"etag": "\"I_8xdZu766_FSaexEaDXTIfEWc0/9VfAq_9bYsg-tsGTlstVR8IaHJQ\"",
|
721
|
+
"id": "z134i3mbgnrtf1ac222otzj50v2ig14cc",
|
722
|
+
"snippet": {
|
723
|
+
"authorDisplayName": "Neva Handy",
|
724
|
+
"authorProfileImageUrl": "https://lh6.googleusercontent.com/-54I_mRkq3eA/AAAAAAAAAAI/AAAAAAAAAE8/Osq6DsOhiLA/photo.jpg?sz=50",
|
725
|
+
"authorChannelUrl": "http://www.youtube.com/channel/UCR-mpoBYGuDOODWqXGFhFXQ",
|
726
|
+
"authorChannelId": {
|
727
|
+
"value": "UCR-mpoBYGuDOODWqXGFhFXQ"
|
728
|
+
},
|
729
|
+
"videoId": "OyDSCKYz5sA",
|
730
|
+
"textDisplay": ""She is all talk but gets nothing done." That really sounds like every politician.\ufeff",
|
731
|
+
"canRate": false,
|
732
|
+
"viewerRating": "none",
|
733
|
+
"likeCount": 60,
|
734
|
+
"publishedAt": "2016-10-14T13:25:13.000Z",
|
735
|
+
"updatedAt": "2016-10-14T13:25:13.000Z"
|
736
|
+
}
|
737
|
+
},
|
738
|
+
"canReply": false,
|
739
|
+
"totalReplyCount": 9,
|
740
|
+
"isPublic": true
|
741
|
+
}
|
742
|
+
}
|
743
|
+
]
|
744
|
+
}
|
745
|
+
http_version:
|
746
|
+
recorded_at: Sun, 23 Oct 2016 13:01:51 GMT
|
747
|
+
- request:
|
748
|
+
method: get
|
749
|
+
uri: https://www.googleapis.com/youtube/v3/commentThreads?fields=&key=<API_KEY>&order=relevance&part=snippet&videoId=OyDSCKYz5sA
|
750
|
+
body:
|
751
|
+
encoding: US-ASCII
|
752
|
+
string: ''
|
753
|
+
headers:
|
754
|
+
Connection:
|
755
|
+
- close
|
756
|
+
Host:
|
757
|
+
- www.googleapis.com
|
758
|
+
User-Agent:
|
759
|
+
- http.rb/2.0.3
|
760
|
+
response:
|
761
|
+
status:
|
762
|
+
code: 200
|
763
|
+
message: OK
|
764
|
+
headers:
|
765
|
+
Expires:
|
766
|
+
- Sun, 23 Oct 2016 13:02:02 GMT
|
767
|
+
Date:
|
768
|
+
- Sun, 23 Oct 2016 13:02:02 GMT
|
769
|
+
Cache-Control:
|
770
|
+
- private, max-age=0, must-revalidate, no-transform
|
771
|
+
Etag:
|
772
|
+
- '"I_8xdZu766_FSaexEaDXTIfEWc0/jEYaAenVG00dHhCyJtQO2LHJIYg"'
|
773
|
+
Vary:
|
774
|
+
- Origin
|
775
|
+
- X-Origin
|
776
|
+
Content-Type:
|
777
|
+
- application/json; charset=UTF-8
|
778
|
+
X-Content-Type-Options:
|
779
|
+
- nosniff
|
780
|
+
X-Frame-Options:
|
781
|
+
- SAMEORIGIN
|
782
|
+
X-Xss-Protection:
|
783
|
+
- 1; mode=block
|
784
|
+
Content-Length:
|
785
|
+
- '3'
|
786
|
+
Server:
|
787
|
+
- GSE
|
788
|
+
Alt-Svc:
|
789
|
+
- quic=":443"; ma=2592000; v="36,35,34"
|
790
|
+
Connection:
|
791
|
+
- close
|
792
|
+
body:
|
793
|
+
encoding: UTF-8
|
794
|
+
string: "{}\n"
|
795
|
+
http_version:
|
796
|
+
recorded_at: Sun, 23 Oct 2016 13:02:03 GMT
|
797
|
+
- request:
|
798
|
+
method: get
|
799
|
+
uri: https://www.googleapis.com/youtube/v3/commentThreads?fields=&key=<API_KEY>&order=relevance&part=snippet&videoId=OyDSCKYz5sA
|
800
|
+
body:
|
801
|
+
encoding: US-ASCII
|
802
|
+
string: ''
|
803
|
+
headers:
|
804
|
+
Connection:
|
805
|
+
- close
|
806
|
+
Host:
|
807
|
+
- www.googleapis.com
|
808
|
+
User-Agent:
|
809
|
+
- http.rb/2.0.3
|
810
|
+
response:
|
811
|
+
status:
|
812
|
+
code: 200
|
813
|
+
message: OK
|
814
|
+
headers:
|
815
|
+
Expires:
|
816
|
+
- Sun, 23 Oct 2016 13:02:03 GMT
|
817
|
+
Date:
|
818
|
+
- Sun, 23 Oct 2016 13:02:03 GMT
|
819
|
+
Cache-Control:
|
820
|
+
- private, max-age=0, must-revalidate, no-transform
|
821
|
+
Etag:
|
822
|
+
- '"I_8xdZu766_FSaexEaDXTIfEWc0/ekcsKMbFKaZN6CSkj_Sr2KdsuR4"'
|
823
|
+
Vary:
|
824
|
+
- Origin
|
825
|
+
- X-Origin
|
826
|
+
Content-Type:
|
827
|
+
- application/json; charset=UTF-8
|
828
|
+
X-Content-Type-Options:
|
829
|
+
- nosniff
|
830
|
+
X-Frame-Options:
|
831
|
+
- SAMEORIGIN
|
832
|
+
X-Xss-Protection:
|
833
|
+
- 1; mode=block
|
834
|
+
Content-Length:
|
835
|
+
- '3'
|
836
|
+
Server:
|
837
|
+
- GSE
|
838
|
+
Alt-Svc:
|
839
|
+
- quic=":443"; ma=2592000; v="36,35,34"
|
840
|
+
Connection:
|
841
|
+
- close
|
842
|
+
body:
|
843
|
+
encoding: UTF-8
|
844
|
+
string: "{}\n"
|
845
|
+
http_version:
|
846
|
+
recorded_at: Sun, 23 Oct 2016 13:02:03 GMT
|
847
|
+
- request:
|
848
|
+
method: get
|
849
|
+
uri: https://www.googleapis.com/youtube/v3/videos?fields=items(id,snippet(channelId,description,publishedAt,title))&id=OyDSCKYz5sA&key=<API_KEY>&part=snippet
|
850
|
+
body:
|
851
|
+
encoding: US-ASCII
|
852
|
+
string: ''
|
853
|
+
headers:
|
854
|
+
Connection:
|
855
|
+
- close
|
856
|
+
Host:
|
857
|
+
- www.googleapis.com
|
858
|
+
User-Agent:
|
859
|
+
- http.rb/2.0.3
|
860
|
+
response:
|
861
|
+
status:
|
862
|
+
code: 200
|
863
|
+
message: OK
|
864
|
+
headers:
|
865
|
+
Expires:
|
866
|
+
- Tue, 25 Oct 2016 14:48:51 GMT
|
867
|
+
Date:
|
868
|
+
- Tue, 25 Oct 2016 14:48:51 GMT
|
869
|
+
Cache-Control:
|
870
|
+
- private, max-age=300, must-revalidate, no-transform
|
871
|
+
Etag:
|
872
|
+
- '"sZ5p5Mo8dPpfIzLYQBF8QIQJym0/4ONzo4UwlN89WUTxWancAMc6iMo"'
|
873
|
+
Vary:
|
874
|
+
- Origin
|
875
|
+
- X-Origin
|
876
|
+
Content-Type:
|
877
|
+
- application/json; charset=UTF-8
|
878
|
+
X-Content-Type-Options:
|
879
|
+
- nosniff
|
880
|
+
X-Frame-Options:
|
881
|
+
- SAMEORIGIN
|
882
|
+
X-Xss-Protection:
|
883
|
+
- 1; mode=block
|
884
|
+
Content-Length:
|
885
|
+
- '5145'
|
886
|
+
Server:
|
887
|
+
- GSE
|
888
|
+
Alt-Svc:
|
889
|
+
- quic=":443"; ma=2592000; v="36,35,34"
|
890
|
+
Connection:
|
891
|
+
- close
|
892
|
+
body:
|
893
|
+
encoding: UTF-8
|
894
|
+
string: |
|
895
|
+
{
|
896
|
+
"items": [
|
897
|
+
{
|
898
|
+
"id": "OyDSCKYz5sA",
|
899
|
+
"snippet": {
|
900
|
+
"publishedAt": "2016-10-10T03:17:07.000Z",
|
901
|
+
"channelId": "UCYE8GO8URXHt3eLkqeo3uSw",
|
902
|
+
"title": "FULL: Second Presidential Debate - Donald Trump vs Hillary Clinton - Washington University 10/9/2016",
|
903
|
+
"description": "WATCH: Final Presidential Debate - Donald Trump vs Hillary Clinton: https://www.youtube.com/watch?v=dGQGwIr47YY\n\nWATCH: Third - Last Presidential Debate - Donald Trump vs Hillary Clinton: https://www.youtube.com/watch?v=dGQGwIr47YY\n\nClick Here To Go Straight To The Livestream Page!\n\n----------------------------------------------------------------------------------------------\n\nWATCH LIVE: Second Presidential Debate - Donald Trump vs Hillary Clinton - St. Louis, MO (10/9/2016) - Donald Trump & Hillary Clinton 2nd Presidential Debate at Washington University (October 9, 2016) - Trump Clinton debate\n\nSecond Debate trump vs clinton\n\nModerator: Martha Raddatz, Chief Global Affairs Correspondent and Co-Anchor of \"This Week,\" ABC \n\nDonald Trump vs Hillary Clinton Second Presidential Debate In Washington University in St. Louis, St. Louis, MO October 9th 2016 HQ HD~Live Trump vs Clinton Second Presidential Debate 2016 HD~LIVE Stream: Donald Trump vs Hillary Clinton Second Presidential Debate at the Washington University in St. Louis, St. Louis, MO 10/9/2016\nTrump Clinton Debate\nThe 2nd Presidential Debate\nSecond Presidential Debate 2016\nFULL Second Presidential Debate: Donald Trump vs Hillary Clinton 10/09/2016 - St. Louis, MO\nDonald Trump vs Hillary Clinton - Second Presidential Debate - St. Louis, MO (10/9/16)\nthe second presidential debate between Hillary Clinton and Donald Trump\nLIVE Stream: Donald Trump vs Hillary Clinton Second Presidential Debate In Washington University in St. Louis, St. Louis, MO 10/9/2016 HQ HD\nLIVE Stream: Donald Trump vs Hillary Clinton Second Presidential Debate In Washington University in St. Louis, St. Louis, MO 10/9/2016 HD\nLIVE Stream: Donald Trump vs Hillary Clinton Second Presidential Debate In Washington University in St. Louis, St. Louis, MO October 9th 2016\nLive Trump vs Clinton Second Presidential Debate 2016 HD LIVE Stream: Donald Trump vs Hillary Clinton Second Presidential Debate at the Washington University in St. Louis, St. Louis, MO 10/9/2016 LIVE Stream: Donald Trump vs Hillary Clinton Second Presidential Debate at the Washington University in St. Louis, St. Louis, MO 10/9/2016\n\nWATCH LIVESTREAM LIVE HQ Donald Trump vs Hillary Clinton 1st Presidential Debate at the Washington University in St. Louis\nMonday, September 26, 2016\nSecond presidential debate\nModerator: Lester Holt, Anchor, NBC Nightly News\nLocation: Washington University, Hempstead, MO\n\n\nTV Channels – Each debate will be broadcast live on C-SPAN, ABC, CBS, FOX and NBC, as well as all cable news channels including CNN, Fox News and MSNBC among others.\n\nFull Videos – Click the “Watch Full Video Link” below on each debate to watch the entire debate video.\n\nLIVE Stream: Donald Trump vs Hillary Clinton Second Presidential Debate In St. Louis 9-26-2016 HQ HD \n\nLIVE Stream: Donald Trump Hillary Clinton Second Presidential Debate In St. Louis 9-26-2016 HQ HD\n\nLIVE Stream: Donald Trump vs Hillary Clinton Second Presidential Debate In St. Louis 9-26-16 HQ HD\n\nLIVE Stream: Donald Trump vs Hillary Clinton Second Presidential Debate In St. Louis September 26th 2016 HQ HD\n\nLive Trump vs Hillary Second Presidential Debate 2016 HD\n\nLIVE Stream: Donald Trump vs Hillary Clinton Second Presidential Debate at the Washington University, Hempstead, MO\n\nLIVE Stream: Donald Trump vs Hillary Clinton Second Presidential Debate at the Washington University, Hempstead\n\nLIVE Stream: Trump vs Clinton Second Presidential Debate at the Washington University, Hempstead 9/26/16 HD\n\nLIVE Stream: Donald Trump vs Hillary Clinton Second Presidential Debate at the Washington University 9-26-2016 HD\n\nTAGS: Live Stream, Donald Trump, Hillary Clinton, Second Presidential Debate 2016, Trump live debate,\nlive trump debate 2016, live hillary clinton debate 2016,\nlive trump vs hillary debate 2016, live stream donald trump debates hillary clinton,\nwatch live presidential debate 2016, live Washington University, live hempstead,\nlive St. Louis debate 2016, livestream hillary vs trump debate, lester holt,\nfull Second presidential debate, live debate trump vs hillary, live 2016 debate\n\nDonald Trump Rally \nHillary Clinton Speech\nDonald Trump Speech \nHillary Clinton Rally \nTim Kaine Rally Speech Live Event \n\nPresidential Debate\n2016 Presidential Debate\nTrump Clinton Debate\nKaine Pence debate\n\nPresidential Debate\n2016 Presidential Debate\n\n#Debates #Debates2016 #debatenight #donaldtrump #trump2016 #trump #TrumpPence16 #TrumpRally #trumptrain #politics #trump4prez #makeamericagreatagain #VoteTrump2016 #TrumpHasMyVote #teamtrump #vote4trump #votetrump #trumpforpresident #americaSecond #trumphasmysupport #Debate #PresidentialDebate #SecondPresidentialdebate #HillaryClinton #Hillary #Clinton #Clinton2016 #ClintonKaine #Hofstra"
|
904
|
+
}
|
905
|
+
}
|
906
|
+
]
|
907
|
+
}
|
908
|
+
http_version:
|
909
|
+
recorded_at: Tue, 25 Oct 2016 14:48:51 GMT
|
910
|
+
- request:
|
911
|
+
method: get
|
912
|
+
uri: https://www.googleapis.com/youtube/v3/comments?id=z13ryv5pynjvtfgst23iy5uxhsrkvzzfz&key=<API_KEY>&part=snippet
|
913
|
+
body:
|
914
|
+
encoding: US-ASCII
|
915
|
+
string: ''
|
916
|
+
headers:
|
917
|
+
Connection:
|
918
|
+
- close
|
919
|
+
Host:
|
920
|
+
- www.googleapis.com
|
921
|
+
User-Agent:
|
922
|
+
- http.rb/2.0.3
|
923
|
+
response:
|
924
|
+
status:
|
925
|
+
code: 200
|
926
|
+
message: OK
|
927
|
+
headers:
|
928
|
+
Expires:
|
929
|
+
- Tue, 25 Oct 2016 16:03:47 GMT
|
930
|
+
Date:
|
931
|
+
- Tue, 25 Oct 2016 16:03:47 GMT
|
932
|
+
Cache-Control:
|
933
|
+
- private, max-age=0, must-revalidate, no-transform
|
934
|
+
Etag:
|
935
|
+
- '"sZ5p5Mo8dPpfIzLYQBF8QIQJym0/qeBiXzwrS6i_SuXwVQOY4ZkW4o4"'
|
936
|
+
Vary:
|
937
|
+
- Origin
|
938
|
+
- X-Origin
|
939
|
+
Content-Type:
|
940
|
+
- application/json; charset=UTF-8
|
941
|
+
X-Content-Type-Options:
|
942
|
+
- nosniff
|
943
|
+
X-Frame-Options:
|
944
|
+
- SAMEORIGIN
|
945
|
+
X-Xss-Protection:
|
946
|
+
- 1; mode=block
|
947
|
+
Content-Length:
|
948
|
+
- '871'
|
949
|
+
Server:
|
950
|
+
- GSE
|
951
|
+
Alt-Svc:
|
952
|
+
- quic=":443"; ma=2592000; v="36,35,34"
|
953
|
+
Connection:
|
954
|
+
- close
|
955
|
+
body:
|
956
|
+
encoding: UTF-8
|
957
|
+
string: |
|
958
|
+
{
|
959
|
+
"kind": "youtube#commentListResponse",
|
960
|
+
"etag": "\"sZ5p5Mo8dPpfIzLYQBF8QIQJym0/qeBiXzwrS6i_SuXwVQOY4ZkW4o4\"",
|
961
|
+
"items": [
|
962
|
+
{
|
963
|
+
"kind": "youtube#comment",
|
964
|
+
"etag": "\"sZ5p5Mo8dPpfIzLYQBF8QIQJym0/71aCrHudnqoJbPiRhOTyHKhiOiU\"",
|
965
|
+
"id": "z13ryv5pynjvtfgst23iy5uxhsrkvzzfz",
|
966
|
+
"snippet": {
|
967
|
+
"authorDisplayName": "leevihermanni",
|
968
|
+
"authorProfileImageUrl": "https://lh4.googleusercontent.com/-bzwXkvW61w8/AAAAAAAAAAI/AAAAAAAAAE4/G9k7waSjzVg/photo.jpg?sz=50",
|
969
|
+
"authorChannelUrl": "http://www.youtube.com/channel/UC8DJocIvsARy4NCaO3Pl1ZA",
|
970
|
+
"authorChannelId": {
|
971
|
+
"value": "UC8DJocIvsARy4NCaO3Pl1ZA"
|
972
|
+
},
|
973
|
+
"textDisplay": "go to watch my trump vs clinton rap battle\ufeff",
|
974
|
+
"canRate": false,
|
975
|
+
"viewerRating": "none",
|
976
|
+
"likeCount": 1,
|
977
|
+
"publishedAt": "2016-10-25T11:35:25.000Z",
|
978
|
+
"updatedAt": "2016-10-25T11:35:25.000Z"
|
979
|
+
}
|
980
|
+
}
|
981
|
+
]
|
982
|
+
}
|
983
|
+
http_version:
|
984
|
+
recorded_at: Tue, 25 Oct 2016 16:03:47 GMT
|
985
|
+
- request:
|
986
|
+
method: get
|
987
|
+
uri: https://www.googleapis.com/youtube/v3/comments?fields=items(snippet(authorChannelId,authorChannelUrl,%0D%0A%20%20%20%20%20%20authorDisplayName,authorProfileImageUrl)))&id=z13ryv5pynjvtfgst23iy5uxhsrkvzzfz&key=<API_KEY>&part=snippet
|
988
|
+
body:
|
989
|
+
encoding: US-ASCII
|
990
|
+
string: ''
|
991
|
+
headers:
|
992
|
+
Connection:
|
993
|
+
- close
|
994
|
+
Host:
|
995
|
+
- www.googleapis.com
|
996
|
+
User-Agent:
|
997
|
+
- http.rb/2.0.3
|
998
|
+
response:
|
999
|
+
status:
|
1000
|
+
code: 400
|
1001
|
+
message: Bad Request
|
1002
|
+
headers:
|
1003
|
+
Vary:
|
1004
|
+
- Origin,Accept-Encoding
|
1005
|
+
- X-Origin
|
1006
|
+
Content-Type:
|
1007
|
+
- application/json; charset=UTF-8
|
1008
|
+
Date:
|
1009
|
+
- Tue, 25 Oct 2016 16:05:05 GMT
|
1010
|
+
Expires:
|
1011
|
+
- Tue, 25 Oct 2016 16:05:05 GMT
|
1012
|
+
Cache-Control:
|
1013
|
+
- private, max-age=0
|
1014
|
+
X-Content-Type-Options:
|
1015
|
+
- nosniff
|
1016
|
+
X-Frame-Options:
|
1017
|
+
- SAMEORIGIN
|
1018
|
+
X-Xss-Protection:
|
1019
|
+
- 1; mode=block
|
1020
|
+
Server:
|
1021
|
+
- GSE
|
1022
|
+
Alt-Svc:
|
1023
|
+
- quic=":443"; ma=2592000; v="36,35,34"
|
1024
|
+
Accept-Ranges:
|
1025
|
+
- none
|
1026
|
+
Connection:
|
1027
|
+
- close
|
1028
|
+
body:
|
1029
|
+
encoding: UTF-8
|
1030
|
+
string: |
|
1031
|
+
{
|
1032
|
+
"error": {
|
1033
|
+
"errors": [
|
1034
|
+
{
|
1035
|
+
"domain": "global",
|
1036
|
+
"reason": "invalidParameter",
|
1037
|
+
"message": "Invalid field selection items(snippet(authorChannelId,authorChannelUrl,\r\n authorDisplayName,authorProfileImageUrl)))",
|
1038
|
+
"locationType": "parameter",
|
1039
|
+
"location": "fields"
|
1040
|
+
}
|
1041
|
+
],
|
1042
|
+
"code": 400,
|
1043
|
+
"message": "Invalid field selection items(snippet(authorChannelId,authorChannelUrl,\r\n authorDisplayName,authorProfileImageUrl)))"
|
1044
|
+
}
|
1045
|
+
}
|
1046
|
+
http_version:
|
1047
|
+
recorded_at: Tue, 25 Oct 2016 16:05:05 GMT
|
1048
|
+
- request:
|
1049
|
+
method: get
|
1050
|
+
uri: https://www.googleapis.com/youtube/v3/comments?fields=items(snippet(authorChannelId,authorChannelUrl,authorDisplayName,authorProfileImageUrl)))&id=z13ryv5pynjvtfgst23iy5uxhsrkvzzfz&key=<API_KEY>&part=snippet
|
1051
|
+
body:
|
1052
|
+
encoding: US-ASCII
|
1053
|
+
string: ''
|
1054
|
+
headers:
|
1055
|
+
Connection:
|
1056
|
+
- close
|
1057
|
+
Host:
|
1058
|
+
- www.googleapis.com
|
1059
|
+
User-Agent:
|
1060
|
+
- http.rb/2.0.3
|
1061
|
+
response:
|
1062
|
+
status:
|
1063
|
+
code: 400
|
1064
|
+
message: Bad Request
|
1065
|
+
headers:
|
1066
|
+
Vary:
|
1067
|
+
- Origin,Accept-Encoding
|
1068
|
+
- X-Origin
|
1069
|
+
Content-Type:
|
1070
|
+
- application/json; charset=UTF-8
|
1071
|
+
Date:
|
1072
|
+
- Tue, 25 Oct 2016 16:11:01 GMT
|
1073
|
+
Expires:
|
1074
|
+
- Tue, 25 Oct 2016 16:11:01 GMT
|
1075
|
+
Cache-Control:
|
1076
|
+
- private, max-age=0
|
1077
|
+
X-Content-Type-Options:
|
1078
|
+
- nosniff
|
1079
|
+
X-Frame-Options:
|
1080
|
+
- SAMEORIGIN
|
1081
|
+
X-Xss-Protection:
|
1082
|
+
- 1; mode=block
|
1083
|
+
Server:
|
1084
|
+
- GSE
|
1085
|
+
Alt-Svc:
|
1086
|
+
- quic=":443"; ma=2592000; v="36,35,34,33,32"
|
1087
|
+
Accept-Ranges:
|
1088
|
+
- none
|
1089
|
+
Connection:
|
1090
|
+
- close
|
1091
|
+
body:
|
1092
|
+
encoding: UTF-8
|
1093
|
+
string: |
|
1094
|
+
{
|
1095
|
+
"error": {
|
1096
|
+
"errors": [
|
1097
|
+
{
|
1098
|
+
"domain": "global",
|
1099
|
+
"reason": "invalidParameter",
|
1100
|
+
"message": "Invalid field selection items(snippet(authorChannelId,authorChannelUrl,authorDisplayName,authorProfileImageUrl)))",
|
1101
|
+
"locationType": "parameter",
|
1102
|
+
"location": "fields"
|
1103
|
+
}
|
1104
|
+
],
|
1105
|
+
"code": 400,
|
1106
|
+
"message": "Invalid field selection items(snippet(authorChannelId,authorChannelUrl,authorDisplayName,authorProfileImageUrl)))"
|
1107
|
+
}
|
1108
|
+
}
|
1109
|
+
http_version:
|
1110
|
+
recorded_at: Tue, 25 Oct 2016 16:11:02 GMT
|
1111
|
+
- request:
|
1112
|
+
method: get
|
1113
|
+
uri: https://www.googleapis.com/youtube/v3/comments?fields=items(snippet(authorChannelId,authorChannelUrl,authorDisplayName,authorProfileImageUrl))&id=z13ryv5pynjvtfgst23iy5uxhsrkvzzfz&key=<API_KEY>&part=snippet
|
1114
|
+
body:
|
1115
|
+
encoding: US-ASCII
|
1116
|
+
string: ''
|
1117
|
+
headers:
|
1118
|
+
Connection:
|
1119
|
+
- close
|
1120
|
+
Host:
|
1121
|
+
- www.googleapis.com
|
1122
|
+
User-Agent:
|
1123
|
+
- http.rb/2.0.3
|
1124
|
+
response:
|
1125
|
+
status:
|
1126
|
+
code: 200
|
1127
|
+
message: OK
|
1128
|
+
headers:
|
1129
|
+
Expires:
|
1130
|
+
- Tue, 25 Oct 2016 16:40:50 GMT
|
1131
|
+
Date:
|
1132
|
+
- Tue, 25 Oct 2016 16:40:50 GMT
|
1133
|
+
Cache-Control:
|
1134
|
+
- private, max-age=0, must-revalidate, no-transform
|
1135
|
+
Etag:
|
1136
|
+
- '"sZ5p5Mo8dPpfIzLYQBF8QIQJym0/qeBiXzwrS6i_SuXwVQOY4ZkW4o4"'
|
1137
|
+
Vary:
|
1138
|
+
- Origin
|
1139
|
+
- X-Origin
|
1140
|
+
Content-Type:
|
1141
|
+
- application/json; charset=UTF-8
|
1142
|
+
X-Content-Type-Options:
|
1143
|
+
- nosniff
|
1144
|
+
X-Frame-Options:
|
1145
|
+
- SAMEORIGIN
|
1146
|
+
X-Xss-Protection:
|
1147
|
+
- 1; mode=block
|
1148
|
+
Content-Length:
|
1149
|
+
- '376'
|
1150
|
+
Server:
|
1151
|
+
- GSE
|
1152
|
+
Alt-Svc:
|
1153
|
+
- quic=":443"; ma=2592000; v="36,35,34,33,32"
|
1154
|
+
Connection:
|
1155
|
+
- close
|
1156
|
+
body:
|
1157
|
+
encoding: UTF-8
|
1158
|
+
string: |
|
1159
|
+
{
|
1160
|
+
"items": [
|
1161
|
+
{
|
1162
|
+
"snippet": {
|
1163
|
+
"authorDisplayName": "leevihermanni",
|
1164
|
+
"authorProfileImageUrl": "https://lh4.googleusercontent.com/-bzwXkvW61w8/AAAAAAAAAAI/AAAAAAAAAE4/G9k7waSjzVg/photo.jpg?sz=50",
|
1165
|
+
"authorChannelUrl": "http://www.youtube.com/channel/UC8DJocIvsARy4NCaO3Pl1ZA",
|
1166
|
+
"authorChannelId": {
|
1167
|
+
"value": "UC8DJocIvsARy4NCaO3Pl1ZA"
|
1168
|
+
}
|
1169
|
+
}
|
1170
|
+
}
|
1171
|
+
]
|
1172
|
+
}
|
1173
|
+
http_version:
|
1174
|
+
recorded_at: Tue, 25 Oct 2016 16:40:50 GMT
|
1175
|
+
- request:
|
1176
|
+
method: get
|
1177
|
+
uri: https://www.googleapis.com/youtube/v3/videos?fields=items(id,snippet(channelId,description,publishedAt,title))&id=FugHj7MGhss&key=<API_KEY>&part=snippet
|
1178
|
+
body:
|
1179
|
+
encoding: US-ASCII
|
1180
|
+
string: ''
|
1181
|
+
headers:
|
1182
|
+
Connection:
|
1183
|
+
- close
|
1184
|
+
Host:
|
1185
|
+
- www.googleapis.com
|
1186
|
+
User-Agent:
|
1187
|
+
- http.rb/2.0.3
|
1188
|
+
response:
|
1189
|
+
status:
|
1190
|
+
code: 200
|
1191
|
+
message: OK
|
1192
|
+
headers:
|
1193
|
+
Expires:
|
1194
|
+
- Thu, 27 Oct 2016 07:02:32 GMT
|
1195
|
+
Date:
|
1196
|
+
- Thu, 27 Oct 2016 07:02:32 GMT
|
1197
|
+
Cache-Control:
|
1198
|
+
- private, max-age=300, must-revalidate, no-transform
|
1199
|
+
Etag:
|
1200
|
+
- '"sZ5p5Mo8dPpfIzLYQBF8QIQJym0/_XpSchtj0n7aiQuUCfShU7B-6_4"'
|
1201
|
+
Vary:
|
1202
|
+
- Origin
|
1203
|
+
- X-Origin
|
1204
|
+
Content-Type:
|
1205
|
+
- application/json; charset=UTF-8
|
1206
|
+
X-Content-Type-Options:
|
1207
|
+
- nosniff
|
1208
|
+
X-Frame-Options:
|
1209
|
+
- SAMEORIGIN
|
1210
|
+
X-Xss-Protection:
|
1211
|
+
- 1; mode=block
|
1212
|
+
Content-Length:
|
1213
|
+
- '410'
|
1214
|
+
Server:
|
1215
|
+
- GSE
|
1216
|
+
Alt-Svc:
|
1217
|
+
- quic=":443"; ma=2592000; v="36,35,34"
|
1218
|
+
Connection:
|
1219
|
+
- close
|
1220
|
+
body:
|
1221
|
+
encoding: UTF-8
|
1222
|
+
string: |
|
1223
|
+
{
|
1224
|
+
"items": [
|
1225
|
+
{
|
1226
|
+
"id": "FugHj7MGhss",
|
1227
|
+
"snippet": {
|
1228
|
+
"publishedAt": "2015-03-04T11:40:17.000Z",
|
1229
|
+
"channelId": "UC-pR7CuFeaa-khgLx65j7CA",
|
1230
|
+
"title": "20150303 二珂 後來 印地安老斑鳩 後會無期 淡水河邊 野薔薇 致青春 匆匆那年 我的滑板鞋",
|
1231
|
+
"description": "新浪微博周二珂:http://weibo.com/u/1910672761\n二珂直播:http://www.panda.tv/35723"
|
1232
|
+
}
|
1233
|
+
}
|
1234
|
+
]
|
1235
|
+
}
|
1236
|
+
http_version:
|
1237
|
+
recorded_at: Thu, 27 Oct 2016 07:02:32 GMT
|
1238
|
+
- request:
|
1239
|
+
method: get
|
1240
|
+
uri: https://www.googleapis.com/youtube/v3/commentThreads?key=<API_KEY>&order=relevance&part=snippet&videoId=FugHj7MGhss
|
1241
|
+
body:
|
1242
|
+
encoding: US-ASCII
|
1243
|
+
string: ''
|
1244
|
+
headers:
|
1245
|
+
Connection:
|
1246
|
+
- close
|
1247
|
+
Host:
|
1248
|
+
- www.googleapis.com
|
1249
|
+
User-Agent:
|
1250
|
+
- http.rb/2.0.3
|
1251
|
+
response:
|
1252
|
+
status:
|
1253
|
+
code: 200
|
1254
|
+
message: OK
|
1255
|
+
headers:
|
1256
|
+
Expires:
|
1257
|
+
- Thu, 27 Oct 2016 07:02:34 GMT
|
1258
|
+
Date:
|
1259
|
+
- Thu, 27 Oct 2016 07:02:34 GMT
|
1260
|
+
Cache-Control:
|
1261
|
+
- private, max-age=0, must-revalidate, no-transform
|
1262
|
+
Etag:
|
1263
|
+
- '"sZ5p5Mo8dPpfIzLYQBF8QIQJym0/IXfWXaaLdX5FQVp1SeT-u2QY7yE"'
|
1264
|
+
Vary:
|
1265
|
+
- Origin
|
1266
|
+
- X-Origin
|
1267
|
+
Content-Type:
|
1268
|
+
- application/json; charset=UTF-8
|
1269
|
+
X-Content-Type-Options:
|
1270
|
+
- nosniff
|
1271
|
+
X-Frame-Options:
|
1272
|
+
- SAMEORIGIN
|
1273
|
+
X-Xss-Protection:
|
1274
|
+
- 1; mode=block
|
1275
|
+
Content-Length:
|
1276
|
+
- '23060'
|
1277
|
+
Server:
|
1278
|
+
- GSE
|
1279
|
+
Alt-Svc:
|
1280
|
+
- quic=":443"; ma=2592000; v="36,35,34"
|
1281
|
+
Connection:
|
1282
|
+
- close
|
1283
|
+
body:
|
1284
|
+
encoding: UTF-8
|
1285
|
+
string: "{\n \"kind\": \"youtube#commentThreadListResponse\",\n \"etag\": \"\\\"sZ5p5Mo8dPpfIzLYQBF8QIQJym0/IXfWXaaLdX5FQVp1SeT-u2QY7yE\\\"\",\n
|
1286
|
+
\"nextPageToken\": \"Cg0Q_Z-zm7X6zwIgACgBEtYBCAAQ8OOE8av1zwIqyAHHsuagwpfTzc4By_XJx5XtnfPNAavXhJftwvrQzwHHlsTB5vDdqcwBxMPI5amv6pXNAaKu4dqrnIK3zAG5qPXi4-SAnM8BvsGEseT7hq7PAfHIprOh9paMzAHojuO598bSrMwBoeOZ5JvltorMAdn1lIbd2f-AzAHQy63uoZGNw80Bo4qvhPeC8MHMAfGirZ_u7O3CzwG416784frOwM0B54rsiPStmuzPAfPtiuuxiMevzwGC7ML3ob3l3s0B_J7UptWY1OjMARgBIBQohcePzuWAhOvTAQ==\",\n
|
1287
|
+
\"pageInfo\": {\n \"totalResults\": 20,\n \"resultsPerPage\": 20\n },\n
|
1288
|
+
\"items\": [\n {\n \"kind\": \"youtube#commentThread\",\n \"etag\": \"\\\"sZ5p5Mo8dPpfIzLYQBF8QIQJym0/llFuV14l9Bwiq2jlg0qzV8Ey7Fc\\\"\",\n
|
1289
|
+
\ \"id\": \"z122xfko2suxyh2lq22vip3a0qqyh5tkl\",\n \"snippet\": {\n \"videoId\":
|
1290
|
+
\"FugHj7MGhss\",\n \"topLevelComment\": {\n \"kind\": \"youtube#comment\",\n
|
1291
|
+
\ \"etag\": \"\\\"sZ5p5Mo8dPpfIzLYQBF8QIQJym0/L6tc-Taa9o4RmVeoOe91gjP6X6k\\\"\",\n
|
1292
|
+
\ \"id\": \"z122xfko2suxyh2lq22vip3a0qqyh5tkl\",\n \"snippet\": {\n
|
1293
|
+
\ \"authorDisplayName\": \"ang pang chuan\",\n \"authorProfileImageUrl\":
|
1294
|
+
\"https://lh5.googleusercontent.com/-cPzTvMOGlII/AAAAAAAAAAI/AAAAAAAAAFI/k8rNOOBGrXs/photo.jpg?sz=50\",\n
|
1295
|
+
\ \"authorChannelUrl\": \"http://www.youtube.com/channel/UCmlO7mWtl9-GuqOoSjfPlvQ\",\n
|
1296
|
+
\ \"authorChannelId\": {\n \"value\": \"UCmlO7mWtl9-GuqOoSjfPlvQ\"\n
|
1297
|
+
\ },\n \"videoId\": \"FugHj7MGhss\",\n \"textDisplay\": \"印地安老斑鳩唱得真的比原唱还好..几乎完美!\\ufeff\",\n
|
1298
|
+
\ \"canRate\": false,\n \"viewerRating\": \"none\",\n \"likeCount\":
|
1299
|
+
0,\n \"publishedAt\": \"2016-10-25T06:37:30.000Z\",\n \"updatedAt\":
|
1300
|
+
\"2016-10-25T06:37:30.000Z\"\n }\n },\n \"canReply\": false,\n \"totalReplyCount\":
|
1301
|
+
0,\n \"isPublic\": true\n }\n },\n {\n \"kind\": \"youtube#commentThread\",\n
|
1302
|
+
\ \"etag\": \"\\\"sZ5p5Mo8dPpfIzLYQBF8QIQJym0/TxU4N1zGymZ5ymncDUjmk_M66eA\\\"\",\n
|
1303
|
+
\ \"id\": \"z12ecvb4qpeiub5yv04chh4oxtarglxjsow0k\",\n \"snippet\": {\n
|
1304
|
+
\ \"videoId\": \"FugHj7MGhss\",\n \"topLevelComment\": {\n \"kind\":
|
1305
|
+
\"youtube#comment\",\n \"etag\": \"\\\"sZ5p5Mo8dPpfIzLYQBF8QIQJym0/uvzFlBGHITqaPOfEHt6vTA9UKHo\\\"\",\n
|
1306
|
+
\ \"id\": \"z12ecvb4qpeiub5yv04chh4oxtarglxjsow0k\",\n \"snippet\":
|
1307
|
+
{\n \"authorDisplayName\": \"Ao Shizhong\",\n \"authorProfileImageUrl\":
|
1308
|
+
\"https://lh3.googleusercontent.com/-XdUIqdMkCWA/AAAAAAAAAAI/AAAAAAAAAAA/4252rscbv5M/photo.jpg?sz=50\",\n
|
1309
|
+
\ \"authorChannelUrl\": \"http://www.youtube.com/channel/UCCpfCKOjTZ7pckMY8l3Gqyw\",\n
|
1310
|
+
\ \"authorChannelId\": {\n \"value\": \"UCCpfCKOjTZ7pckMY8l3Gqyw\"\n
|
1311
|
+
\ },\n \"videoId\": \"FugHj7MGhss\",\n \"textDisplay\": \"666666666666666666666666666666\\ufeff\",\n
|
1312
|
+
\ \"canRate\": false,\n \"viewerRating\": \"none\",\n \"likeCount\":
|
1313
|
+
0,\n \"publishedAt\": \"2016-09-30T22:27:23.000Z\",\n \"updatedAt\":
|
1314
|
+
\"2016-09-30T22:27:23.000Z\"\n }\n },\n \"canReply\": false,\n \"totalReplyCount\":
|
1315
|
+
0,\n \"isPublic\": true\n }\n },\n {\n \"kind\": \"youtube#commentThread\",\n
|
1316
|
+
\ \"etag\": \"\\\"sZ5p5Mo8dPpfIzLYQBF8QIQJym0/ZJUBjJ6k_KhCi6NTEBzLMgvyrTs\\\"\",\n
|
1317
|
+
\ \"id\": \"z12vjroh2qvpupjrz04chfwxikefy5jz3pk0k\",\n \"snippet\": {\n
|
1318
|
+
\ \"videoId\": \"FugHj7MGhss\",\n \"topLevelComment\": {\n \"kind\":
|
1319
|
+
\"youtube#comment\",\n \"etag\": \"\\\"sZ5p5Mo8dPpfIzLYQBF8QIQJym0/zXIqNdd9n6UjdeiLm09D9AZb2_4\\\"\",\n
|
1320
|
+
\ \"id\": \"z12vjroh2qvpupjrz04chfwxikefy5jz3pk0k\",\n \"snippet\":
|
1321
|
+
{\n \"authorDisplayName\": \"XL Hu\",\n \"authorProfileImageUrl\":
|
1322
|
+
\"https://lh3.googleusercontent.com/-XdUIqdMkCWA/AAAAAAAAAAI/AAAAAAAAAAA/4252rscbv5M/photo.jpg?sz=50\",\n
|
1323
|
+
\ \"authorChannelUrl\": \"http://www.youtube.com/channel/UCV1BvJIaNGhtGwtBwivj7nw\",\n
|
1324
|
+
\ \"authorChannelId\": {\n \"value\": \"UCV1BvJIaNGhtGwtBwivj7nw\"\n
|
1325
|
+
\ },\n \"videoId\": \"FugHj7MGhss\",\n \"textDisplay\": \"我还没听过这么好听的老斑鸠\\ufeff\",\n
|
1326
|
+
\ \"canRate\": false,\n \"viewerRating\": \"none\",\n \"likeCount\":
|
1327
|
+
4,\n \"publishedAt\": \"2016-03-12T06:47:47.000Z\",\n \"updatedAt\":
|
1328
|
+
\"2016-03-12T06:47:47.000Z\"\n }\n },\n \"canReply\": false,\n \"totalReplyCount\":
|
1329
|
+
0,\n \"isPublic\": true\n }\n },\n {\n \"kind\": \"youtube#commentThread\",\n
|
1330
|
+
\ \"etag\": \"\\\"sZ5p5Mo8dPpfIzLYQBF8QIQJym0/7Fhg8o6DkuYxz2CtVzLRdHYoKSk\\\"\",\n
|
1331
|
+
\ \"id\": \"z12keh2guzjpsn2tw22gcnoo2vbxwhrl2\",\n \"snippet\": {\n \"videoId\":
|
1332
|
+
\"FugHj7MGhss\",\n \"topLevelComment\": {\n \"kind\": \"youtube#comment\",\n
|
1333
|
+
\ \"etag\": \"\\\"sZ5p5Mo8dPpfIzLYQBF8QIQJym0/Xm0TBMToxT9sjwu_8KxyX1Ac7Zw\\\"\",\n
|
1334
|
+
\ \"id\": \"z12keh2guzjpsn2tw22gcnoo2vbxwhrl2\",\n \"snippet\": {\n
|
1335
|
+
\ \"authorDisplayName\": \"zhixing liu\",\n \"authorProfileImageUrl\":
|
1336
|
+
\"https://lh6.googleusercontent.com/-sXHNFbXAOio/AAAAAAAAAAI/AAAAAAAAAEY/W_fokWr_snw/photo.jpg?sz=50\",\n
|
1337
|
+
\ \"authorChannelUrl\": \"http://www.youtube.com/channel/UCTOQD28aY_RJtRVZ8hxBkTw\",\n
|
1338
|
+
\ \"authorChannelId\": {\n \"value\": \"UCTOQD28aY_RJtRVZ8hxBkTw\"\n
|
1339
|
+
\ },\n \"videoId\": \"FugHj7MGhss\",\n \"textDisplay\": \"印第安老斑鸠还是听惯了周杰伦的原版,不过我珂也很有特色!\\ufeff\",\n
|
1340
|
+
\ \"canRate\": false,\n \"viewerRating\": \"none\",\n \"likeCount\":
|
1341
|
+
0,\n \"publishedAt\": \"2016-09-20T21:56:58.000Z\",\n \"updatedAt\":
|
1342
|
+
\"2016-09-20T21:56:58.000Z\"\n }\n },\n \"canReply\": false,\n \"totalReplyCount\":
|
1343
|
+
0,\n \"isPublic\": true\n }\n },\n {\n \"kind\": \"youtube#commentThread\",\n
|
1344
|
+
\ \"etag\": \"\\\"sZ5p5Mo8dPpfIzLYQBF8QIQJym0/8UdnprfIdCraGg1oau4t2q2waQU\\\"\",\n
|
1345
|
+
\ \"id\": \"z12zdhzzruzze3bwh04ciz2puzutirjgjto0k\",\n \"snippet\": {\n
|
1346
|
+
\ \"videoId\": \"FugHj7MGhss\",\n \"topLevelComment\": {\n \"kind\":
|
1347
|
+
\"youtube#comment\",\n \"etag\": \"\\\"sZ5p5Mo8dPpfIzLYQBF8QIQJym0/PgPFYJJCVJL8otRMWuBqwlR4r2A\\\"\",\n
|
1348
|
+
\ \"id\": \"z12zdhzzruzze3bwh04ciz2puzutirjgjto0k\",\n \"snippet\":
|
1349
|
+
{\n \"authorDisplayName\": \"黃挺哲\",\n \"authorProfileImageUrl\":
|
1350
|
+
\"https://lh3.googleusercontent.com/-XdUIqdMkCWA/AAAAAAAAAAI/AAAAAAAAAAA/4252rscbv5M/photo.jpg?sz=50\",\n
|
1351
|
+
\ \"authorChannelUrl\": \"http://www.youtube.com/channel/UCD0nTdjQXJLXFek9sE8crug\",\n
|
1352
|
+
\ \"authorChannelId\": {\n \"value\": \"UCD0nTdjQXJLXFek9sE8crug\"\n
|
1353
|
+
\ },\n \"videoId\": \"FugHj7MGhss\",\n \"textDisplay\": \"nice\\ufeff\",\n
|
1354
|
+
\ \"canRate\": false,\n \"viewerRating\": \"none\",\n \"likeCount\":
|
1355
|
+
0,\n \"publishedAt\": \"2016-08-24T02:30:51.000Z\",\n \"updatedAt\":
|
1356
|
+
\"2016-08-24T02:30:51.000Z\"\n }\n },\n \"canReply\": false,\n \"totalReplyCount\":
|
1357
|
+
0,\n \"isPublic\": true\n }\n },\n {\n \"kind\": \"youtube#commentThread\",\n
|
1358
|
+
\ \"etag\": \"\\\"sZ5p5Mo8dPpfIzLYQBF8QIQJym0/oHRvMNmnm8Hl3v5y2Ra-leGYuvQ\\\"\",\n
|
1359
|
+
\ \"id\": \"z13sszfqfoe1tp3gu04chtlh2niwc10acdc\",\n \"snippet\": {\n \"videoId\":
|
1360
|
+
\"FugHj7MGhss\",\n \"topLevelComment\": {\n \"kind\": \"youtube#comment\",\n
|
1361
|
+
\ \"etag\": \"\\\"sZ5p5Mo8dPpfIzLYQBF8QIQJym0/A4ld_f5cRYFLJ6o8BsxSopHGgFc\\\"\",\n
|
1362
|
+
\ \"id\": \"z13sszfqfoe1tp3gu04chtlh2niwc10acdc\",\n \"snippet\": {\n
|
1363
|
+
\ \"authorDisplayName\": \"Shaoting Wang\",\n \"authorProfileImageUrl\":
|
1364
|
+
\"https://lh5.googleusercontent.com/-2Y3uSVPWoPM/AAAAAAAAAAI/AAAAAAAAABE/rmDz5D5EbWk/photo.jpg?sz=50\",\n
|
1365
|
+
\ \"authorChannelUrl\": \"http://www.youtube.com/channel/UCuGfSn8tjwI-Jkx6Dy6w7kg\",\n
|
1366
|
+
\ \"authorChannelId\": {\n \"value\": \"UCuGfSn8tjwI-Jkx6Dy6w7kg\"\n
|
1367
|
+
\ },\n \"videoId\": \"FugHj7MGhss\",\n \"textDisplay\": \"66666666666666666666666\\ufeff\",\n
|
1368
|
+
\ \"canRate\": false,\n \"viewerRating\": \"none\",\n \"likeCount\":
|
1369
|
+
1,\n \"publishedAt\": \"2016-03-17T00:42:22.000Z\",\n \"updatedAt\":
|
1370
|
+
\"2016-03-17T00:42:22.000Z\"\n }\n },\n \"canReply\": false,\n \"totalReplyCount\":
|
1371
|
+
0,\n \"isPublic\": true\n }\n },\n {\n \"kind\": \"youtube#commentThread\",\n
|
1372
|
+
\ \"etag\": \"\\\"sZ5p5Mo8dPpfIzLYQBF8QIQJym0/ZxGgFzhB0JkYNjxxcAIkE6IA_-8\\\"\",\n
|
1373
|
+
\ \"id\": \"z13oj5gxfvuesnnvk22sjrh4npmjgt5e3\",\n \"snippet\": {\n \"videoId\":
|
1374
|
+
\"FugHj7MGhss\",\n \"topLevelComment\": {\n \"kind\": \"youtube#comment\",\n
|
1375
|
+
\ \"etag\": \"\\\"sZ5p5Mo8dPpfIzLYQBF8QIQJym0/lBDJPEZGXgfjwWqkOGPD8MGabZY\\\"\",\n
|
1376
|
+
\ \"id\": \"z13oj5gxfvuesnnvk22sjrh4npmjgt5e3\",\n \"snippet\": {\n
|
1377
|
+
\ \"authorDisplayName\": \"Izayoi Sakamaki (Justin Xiao)\",\n \"authorProfileImageUrl\":
|
1378
|
+
\"https://lh6.googleusercontent.com/-0VMLKycIMyk/AAAAAAAAAAI/AAAAAAAAAPo/HSKoidbeBk8/photo.jpg?sz=50\",\n
|
1379
|
+
\ \"authorChannelUrl\": \"http://www.youtube.com/channel/UCefeWYVoo3EpK0OpSkOBocg\",\n
|
1380
|
+
\ \"authorChannelId\": {\n \"value\": \"UCefeWYVoo3EpK0OpSkOBocg\"\n
|
1381
|
+
\ },\n \"videoId\": \"FugHj7MGhss\",\n \"textDisplay\": \"You
|
1382
|
+
have such a great voice.\\ufeff\",\n \"canRate\": false,\n \"viewerRating\":
|
1383
|
+
\"none\",\n \"likeCount\": 0,\n \"publishedAt\": \"2016-05-26T03:19:44.000Z\",\n
|
1384
|
+
\ \"updatedAt\": \"2016-05-26T03:19:44.000Z\"\n }\n },\n \"canReply\":
|
1385
|
+
false,\n \"totalReplyCount\": 1,\n \"isPublic\": true\n }\n },\n
|
1386
|
+
\ {\n \"kind\": \"youtube#commentThread\",\n \"etag\": \"\\\"sZ5p5Mo8dPpfIzLYQBF8QIQJym0/k4yO1iXLd-rVtewzhXWDEJ3yQSc\\\"\",\n
|
1387
|
+
\ \"id\": \"z13shjfo5yiqjxauu22cxfqb4wbvy5ub104\",\n \"snippet\": {\n \"videoId\":
|
1388
|
+
\"FugHj7MGhss\",\n \"topLevelComment\": {\n \"kind\": \"youtube#comment\",\n
|
1389
|
+
\ \"etag\": \"\\\"sZ5p5Mo8dPpfIzLYQBF8QIQJym0/CQlJZmd2Fgmq5dZx4KOqVW2GvoU\\\"\",\n
|
1390
|
+
\ \"id\": \"z13shjfo5yiqjxauu22cxfqb4wbvy5ub104\",\n \"snippet\": {\n
|
1391
|
+
\ \"authorDisplayName\": \"謝志鵬\",\n \"authorProfileImageUrl\": \"https://lh5.googleusercontent.com/-FwxPTHJYxw4/AAAAAAAAAAI/AAAAAAAAABo/6PEhXzbP-Nc/photo.jpg?sz=50\",\n
|
1392
|
+
\ \"authorChannelUrl\": \"http://www.youtube.com/channel/UC9DO4l7rGCeqtyf3bXGVOLQ\",\n
|
1393
|
+
\ \"authorChannelId\": {\n \"value\": \"UC9DO4l7rGCeqtyf3bXGVOLQ\"\n
|
1394
|
+
\ },\n \"videoId\": \"FugHj7MGhss\",\n \"textDisplay\": \"超好聽的ㄟ\\ufeff\",\n
|
1395
|
+
\ \"canRate\": false,\n \"viewerRating\": \"none\",\n \"likeCount\":
|
1396
|
+
0,\n \"publishedAt\": \"2016-08-02T05:42:46.000Z\",\n \"updatedAt\":
|
1397
|
+
\"2016-08-02T05:42:46.000Z\"\n }\n },\n \"canReply\": false,\n \"totalReplyCount\":
|
1398
|
+
0,\n \"isPublic\": true\n }\n },\n {\n \"kind\": \"youtube#commentThread\",\n
|
1399
|
+
\ \"etag\": \"\\\"sZ5p5Mo8dPpfIzLYQBF8QIQJym0/y-yGBXBKEoaiCB1E0x08rmAwL30\\\"\",\n
|
1400
|
+
\ \"id\": \"z12htl2qkqbzclrzb04ceh0jhqmgfxpxoa0\",\n \"snippet\": {\n \"videoId\":
|
1401
|
+
\"FugHj7MGhss\",\n \"topLevelComment\": {\n \"kind\": \"youtube#comment\",\n
|
1402
|
+
\ \"etag\": \"\\\"sZ5p5Mo8dPpfIzLYQBF8QIQJym0/8cIapVHtJV_bYFsI6wGVPArOPO8\\\"\",\n
|
1403
|
+
\ \"id\": \"z12htl2qkqbzclrzb04ceh0jhqmgfxpxoa0\",\n \"snippet\": {\n
|
1404
|
+
\ \"authorDisplayName\": \"Independent123\",\n \"authorProfileImageUrl\":
|
1405
|
+
\"https://lh6.googleusercontent.com/-b8jdu21Beyw/AAAAAAAAAAI/AAAAAAAAABw/JN0AsrP_0F8/photo.jpg?sz=50\",\n
|
1406
|
+
\ \"authorChannelUrl\": \"http://www.youtube.com/channel/UCpYpBt7ZRomZHaEDOj3lbig\",\n
|
1407
|
+
\ \"authorChannelId\": {\n \"value\": \"UCpYpBt7ZRomZHaEDOj3lbig\"\n
|
1408
|
+
\ },\n \"videoId\": \"FugHj7MGhss\",\n \"textDisplay\": \"666666666666666666666666666\\ufeff\",\n
|
1409
|
+
\ \"canRate\": false,\n \"viewerRating\": \"none\",\n \"likeCount\":
|
1410
|
+
0,\n \"publishedAt\": \"2016-04-18T04:01:15.000Z\",\n \"updatedAt\":
|
1411
|
+
\"2016-04-18T04:01:15.000Z\"\n }\n },\n \"canReply\": false,\n \"totalReplyCount\":
|
1412
|
+
0,\n \"isPublic\": true\n }\n },\n {\n \"kind\": \"youtube#commentThread\",\n
|
1413
|
+
\ \"etag\": \"\\\"sZ5p5Mo8dPpfIzLYQBF8QIQJym0/162W2vKFLWn5OW47y6eZu0UreNI\\\"\",\n
|
1414
|
+
\ \"id\": \"z131ivqwkxuvtle1x22rg3fztyetvfk2d\",\n \"snippet\": {\n \"videoId\":
|
1415
|
+
\"FugHj7MGhss\",\n \"topLevelComment\": {\n \"kind\": \"youtube#comment\",\n
|
1416
|
+
\ \"etag\": \"\\\"sZ5p5Mo8dPpfIzLYQBF8QIQJym0/On-1ZfBgsSbLBRY3OfNAI0FI2SU\\\"\",\n
|
1417
|
+
\ \"id\": \"z131ivqwkxuvtle1x22rg3fztyetvfk2d\",\n \"snippet\": {\n
|
1418
|
+
\ \"authorDisplayName\": \"王笙翰\",\n \"authorProfileImageUrl\": \"https://lh3.googleusercontent.com/-XdUIqdMkCWA/AAAAAAAAAAI/AAAAAAAAAAA/4252rscbv5M/photo.jpg?sz=50\",\n
|
1419
|
+
\ \"authorChannelUrl\": \"http://www.youtube.com/channel/UCD7RhGQvzrJN3wXSI58iWew\",\n
|
1420
|
+
\ \"authorChannelId\": {\n \"value\": \"UCD7RhGQvzrJN3wXSI58iWew\"\n
|
1421
|
+
\ },\n \"videoId\": \"FugHj7MGhss\",\n \"textDisplay\": \"\U0001F44D\U0001F44D\\ufeff\",\n
|
1422
|
+
\ \"canRate\": false,\n \"viewerRating\": \"none\",\n \"likeCount\":
|
1423
|
+
0,\n \"publishedAt\": \"2016-08-01T03:54:30.000Z\",\n \"updatedAt\":
|
1424
|
+
\"2016-08-01T03:54:30.000Z\"\n }\n },\n \"canReply\": false,\n \"totalReplyCount\":
|
1425
|
+
0,\n \"isPublic\": true\n }\n },\n {\n \"kind\": \"youtube#commentThread\",\n
|
1426
|
+
\ \"etag\": \"\\\"sZ5p5Mo8dPpfIzLYQBF8QIQJym0/bcCKnJIHI3TB3kk5hcqMn9GwalM\\\"\",\n
|
1427
|
+
\ \"id\": \"z13fwjnh0tz0ifbfi22ahzq50pulcn4je04\",\n \"snippet\": {\n \"videoId\":
|
1428
|
+
\"FugHj7MGhss\",\n \"topLevelComment\": {\n \"kind\": \"youtube#comment\",\n
|
1429
|
+
\ \"etag\": \"\\\"sZ5p5Mo8dPpfIzLYQBF8QIQJym0/pqaklx8pnEF0a_EvikaFyvPQcm8\\\"\",\n
|
1430
|
+
\ \"id\": \"z13fwjnh0tz0ifbfi22ahzq50pulcn4je04\",\n \"snippet\": {\n
|
1431
|
+
\ \"authorDisplayName\": \"Jianwen Zhang\",\n \"authorProfileImageUrl\":
|
1432
|
+
\"https://lh3.googleusercontent.com/-XdUIqdMkCWA/AAAAAAAAAAI/AAAAAAAAAAA/4252rscbv5M/photo.jpg?sz=50\",\n
|
1433
|
+
\ \"authorChannelUrl\": \"http://www.youtube.com/channel/UCPy6kCHLLcnjpu9BjCMDesQ\",\n
|
1434
|
+
\ \"authorChannelId\": {\n \"value\": \"UCPy6kCHLLcnjpu9BjCMDesQ\"\n
|
1435
|
+
\ },\n \"videoId\": \"FugHj7MGhss\",\n \"textDisplay\": \"五一,加班,打卡~\\ufeff\",\n
|
1436
|
+
\ \"canRate\": false,\n \"viewerRating\": \"none\",\n \"likeCount\":
|
1437
|
+
0,\n \"publishedAt\": \"2016-05-01T12:24:11.000Z\",\n \"updatedAt\":
|
1438
|
+
\"2016-05-01T12:24:11.000Z\"\n }\n },\n \"canReply\": false,\n \"totalReplyCount\":
|
1439
|
+
0,\n \"isPublic\": true\n }\n },\n {\n \"kind\": \"youtube#commentThread\",\n
|
1440
|
+
\ \"etag\": \"\\\"sZ5p5Mo8dPpfIzLYQBF8QIQJym0/Tr8zChcAdYZMAFadRyFUWSNwu6A\\\"\",\n
|
1441
|
+
\ \"id\": \"z13jzh3obsymc1mh004ccvwqfmanxpyrpq00k\",\n \"snippet\": {\n
|
1442
|
+
\ \"videoId\": \"FugHj7MGhss\",\n \"topLevelComment\": {\n \"kind\":
|
1443
|
+
\"youtube#comment\",\n \"etag\": \"\\\"sZ5p5Mo8dPpfIzLYQBF8QIQJym0/rcasq2uAjaAZYorhynZEZFQwJV8\\\"\",\n
|
1444
|
+
\ \"id\": \"z13jzh3obsymc1mh004ccvwqfmanxpyrpq00k\",\n \"snippet\":
|
1445
|
+
{\n \"authorDisplayName\": \"Johnny jai\",\n \"authorProfileImageUrl\":
|
1446
|
+
\"https://lh3.googleusercontent.com/-CuwfaxmRZ40/AAAAAAAAAAI/AAAAAAAAAEM/TZOYcE_pB1s/photo.jpg?sz=50\",\n
|
1447
|
+
\ \"authorChannelUrl\": \"http://www.youtube.com/channel/UCzilSk_VjaLEJOmSpg6kKkw\",\n
|
1448
|
+
\ \"authorChannelId\": {\n \"value\": \"UCzilSk_VjaLEJOmSpg6kKkw\"\n
|
1449
|
+
\ },\n \"videoId\": \"FugHj7MGhss\",\n \"textDisplay\": \"这首歌我也会唱!!!\\u003cbr
|
1450
|
+
/\\u003e\\u003cbr /\\u003e這首歌我也會唱!!!\\ufeff\",\n \"canRate\": false,\n
|
1451
|
+
\ \"viewerRating\": \"none\",\n \"likeCount\": 0,\n \"publishedAt\":
|
1452
|
+
\"2016-09-05T17:21:03.000Z\",\n \"updatedAt\": \"2016-09-05T17:21:03.000Z\"\n
|
1453
|
+
\ }\n },\n \"canReply\": false,\n \"totalReplyCount\": 0,\n \"isPublic\":
|
1454
|
+
true\n }\n },\n {\n \"kind\": \"youtube#commentThread\",\n \"etag\":
|
1455
|
+
\"\\\"sZ5p5Mo8dPpfIzLYQBF8QIQJym0/i96p48wUoWVldA5EpnJK_IxZ8vY\\\"\",\n \"id\":
|
1456
|
+
\"z123zx1g1pfycne0k22hjjiwwozyvdzs5\",\n \"snippet\": {\n \"videoId\":
|
1457
|
+
\"FugHj7MGhss\",\n \"topLevelComment\": {\n \"kind\": \"youtube#comment\",\n
|
1458
|
+
\ \"etag\": \"\\\"sZ5p5Mo8dPpfIzLYQBF8QIQJym0/ZC9GMOfeS5xkKkQGqbxn2LRT7lw\\\"\",\n
|
1459
|
+
\ \"id\": \"z123zx1g1pfycne0k22hjjiwwozyvdzs5\",\n \"snippet\": {\n
|
1460
|
+
\ \"authorDisplayName\": \"田云龙\",\n \"authorProfileImageUrl\": \"https://lh3.googleusercontent.com/-XdUIqdMkCWA/AAAAAAAAAAI/AAAAAAAAAAA/4252rscbv5M/photo.jpg?sz=50\",\n
|
1461
|
+
\ \"authorChannelUrl\": \"http://www.youtube.com/channel/UCjLVMTiIpz2s6VWkrcQLkVQ\",\n
|
1462
|
+
\ \"authorChannelId\": {\n \"value\": \"UCjLVMTiIpz2s6VWkrcQLkVQ\"\n
|
1463
|
+
\ },\n \"videoId\": \"FugHj7MGhss\",\n \"textDisplay\": \"唱歌不错哦!\\ufeff\",\n
|
1464
|
+
\ \"canRate\": false,\n \"viewerRating\": \"none\",\n \"likeCount\":
|
1465
|
+
0,\n \"publishedAt\": \"2016-08-10T04:51:55.000Z\",\n \"updatedAt\":
|
1466
|
+
\"2016-08-10T04:51:55.000Z\"\n }\n },\n \"canReply\": false,\n \"totalReplyCount\":
|
1467
|
+
0,\n \"isPublic\": true\n }\n },\n {\n \"kind\": \"youtube#commentThread\",\n
|
1468
|
+
\ \"etag\": \"\\\"sZ5p5Mo8dPpfIzLYQBF8QIQJym0/WSHAHYfeQvMpCUzWoWsWQxChMPs\\\"\",\n
|
1469
|
+
\ \"id\": \"z13oyrjj3xmhtryoh04cjdsanyu2f1k553s\",\n \"snippet\": {\n \"videoId\":
|
1470
|
+
\"FugHj7MGhss\",\n \"topLevelComment\": {\n \"kind\": \"youtube#comment\",\n
|
1471
|
+
\ \"etag\": \"\\\"sZ5p5Mo8dPpfIzLYQBF8QIQJym0/XvYM1lFStWxRJ-Lgpc2Lapllhuc\\\"\",\n
|
1472
|
+
\ \"id\": \"z13oyrjj3xmhtryoh04cjdsanyu2f1k553s\",\n \"snippet\": {\n
|
1473
|
+
\ \"authorDisplayName\": \"never say\",\n \"authorProfileImageUrl\":
|
1474
|
+
\"https://lh3.googleusercontent.com/-XdUIqdMkCWA/AAAAAAAAAAI/AAAAAAAAAAA/4252rscbv5M/photo.jpg?sz=50\",\n
|
1475
|
+
\ \"authorChannelUrl\": \"http://www.youtube.com/channel/UCaxHIyI4eekNR7JkRXw4gng\",\n
|
1476
|
+
\ \"authorChannelId\": {\n \"value\": \"UCaxHIyI4eekNR7JkRXw4gng\"\n
|
1477
|
+
\ },\n \"videoId\": \"FugHj7MGhss\",\n \"textDisplay\": \"翻墙很容易的,只需点一下就好了\\ufeff\",\n
|
1478
|
+
\ \"canRate\": false,\n \"viewerRating\": \"none\",\n \"likeCount\":
|
1479
|
+
0,\n \"publishedAt\": \"2015-12-30T03:13:52.000Z\",\n \"updatedAt\":
|
1480
|
+
\"2015-12-30T03:13:52.000Z\"\n }\n },\n \"canReply\": false,\n \"totalReplyCount\":
|
1481
|
+
0,\n \"isPublic\": true\n }\n },\n {\n \"kind\": \"youtube#commentThread\",\n
|
1482
|
+
\ \"etag\": \"\\\"sZ5p5Mo8dPpfIzLYQBF8QIQJym0/rcW3qUGUTRAks10_lXc7yosGKXA\\\"\",\n
|
1483
|
+
\ \"id\": \"z13uf5tpexvbfzqzh04chnxphyrgxj0ofr40k\",\n \"snippet\": {\n
|
1484
|
+
\ \"videoId\": \"FugHj7MGhss\",\n \"topLevelComment\": {\n \"kind\":
|
1485
|
+
\"youtube#comment\",\n \"etag\": \"\\\"sZ5p5Mo8dPpfIzLYQBF8QIQJym0/tEVnslCKdnRCTDVUXUwyBqZtmG8\\\"\",\n
|
1486
|
+
\ \"id\": \"z13uf5tpexvbfzqzh04chnxphyrgxj0ofr40k\",\n \"snippet\":
|
1487
|
+
{\n \"authorDisplayName\": \"Dota2信長重製\",\n \"authorProfileImageUrl\":
|
1488
|
+
\"https://lh5.googleusercontent.com/-JxFRNnMV7Lo/AAAAAAAAAAI/AAAAAAAAF3c/DEGnn6nW14w/photo.jpg?sz=50\",\n
|
1489
|
+
\ \"authorChannelUrl\": \"http://www.youtube.com/channel/UCXMGBAuIqrMz4bhvp6zMCag\",\n
|
1490
|
+
\ \"authorChannelId\": {\n \"value\": \"UCXMGBAuIqrMz4bhvp6zMCag\"\n
|
1491
|
+
\ },\n \"videoId\": \"FugHj7MGhss\",\n \"textDisplay\": \"LOVE~\\ufeff\",\n
|
1492
|
+
\ \"canRate\": false,\n \"viewerRating\": \"none\",\n \"likeCount\":
|
1493
|
+
0,\n \"publishedAt\": \"2015-12-26T09:50:27.000Z\",\n \"updatedAt\":
|
1494
|
+
\"2015-12-26T09:50:27.000Z\"\n }\n },\n \"canReply\": false,\n \"totalReplyCount\":
|
1495
|
+
0,\n \"isPublic\": true\n }\n },\n {\n \"kind\": \"youtube#commentThread\",\n
|
1496
|
+
\ \"etag\": \"\\\"sZ5p5Mo8dPpfIzLYQBF8QIQJym0/tGMpXVOvr9Nn5hUv7O1NrdE9PEU\\\"\",\n
|
1497
|
+
\ \"id\": \"z132ilfpuwiyijobv04cdntidmqlevbpmls0k\",\n \"snippet\": {\n
|
1498
|
+
\ \"videoId\": \"FugHj7MGhss\",\n \"topLevelComment\": {\n \"kind\":
|
1499
|
+
\"youtube#comment\",\n \"etag\": \"\\\"sZ5p5Mo8dPpfIzLYQBF8QIQJym0/bxdfJcs3aWibb0djOEgWX-lwqk0\\\"\",\n
|
1500
|
+
\ \"id\": \"z132ilfpuwiyijobv04cdntidmqlevbpmls0k\",\n \"snippet\":
|
1501
|
+
{\n \"authorDisplayName\": \"LaiHoWong\",\n \"authorProfileImageUrl\":
|
1502
|
+
\"https://lh3.googleusercontent.com/-1lZ_HVofI38/AAAAAAAAAAI/AAAAAAAAABk/GE_8NOgYp7g/photo.jpg?sz=50\",\n
|
1503
|
+
\ \"authorChannelUrl\": \"http://www.youtube.com/channel/UCzHDRCJMkkMrzPDFzbi7FxA\",\n
|
1504
|
+
\ \"authorChannelId\": {\n \"value\": \"UCzHDRCJMkkMrzPDFzbi7FxA\"\n
|
1505
|
+
\ },\n \"videoId\": \"FugHj7MGhss\",\n \"textDisplay\": \"超级好听\\ufeff\",\n
|
1506
|
+
\ \"canRate\": false,\n \"viewerRating\": \"none\",\n \"likeCount\":
|
1507
|
+
0,\n \"publishedAt\": \"2016-01-07T22:17:11.000Z\",\n \"updatedAt\":
|
1508
|
+
\"2016-01-07T22:17:11.000Z\"\n }\n },\n \"canReply\": false,\n \"totalReplyCount\":
|
1509
|
+
0,\n \"isPublic\": true\n }\n },\n {\n \"kind\": \"youtube#commentThread\",\n
|
1510
|
+
\ \"etag\": \"\\\"sZ5p5Mo8dPpfIzLYQBF8QIQJym0/jGLM-1pxp8y15S5pdmMkLxKQadg\\\"\",\n
|
1511
|
+
\ \"id\": \"z12zx3ba4ziotlc5q04cgvlz0lbvhvr4ono0k\",\n \"snippet\": {\n
|
1512
|
+
\ \"videoId\": \"FugHj7MGhss\",\n \"topLevelComment\": {\n \"kind\":
|
1513
|
+
\"youtube#comment\",\n \"etag\": \"\\\"sZ5p5Mo8dPpfIzLYQBF8QIQJym0/PfltCfrE0j57Lzph0nMxTs_cZYc\\\"\",\n
|
1514
|
+
\ \"id\": \"z12zx3ba4ziotlc5q04cgvlz0lbvhvr4ono0k\",\n \"snippet\":
|
1515
|
+
{\n \"authorDisplayName\": \",李勇樟\",\n \"authorProfileImageUrl\":
|
1516
|
+
\"https://lh4.googleusercontent.com/-BaDLsfzr14Y/AAAAAAAAAAI/AAAAAAAAACw/ASGueTH0_20/photo.jpg?sz=50\",\n
|
1517
|
+
\ \"authorChannelUrl\": \"http://www.youtube.com/channel/UCp-qAezI6Stkuqj4IdVeMdA\",\n
|
1518
|
+
\ \"authorChannelId\": {\n \"value\": \"UCp-qAezI6Stkuqj4IdVeMdA\"\n
|
1519
|
+
\ },\n \"videoId\": \"FugHj7MGhss\",\n \"textDisplay\": \"這是甚麼撥放軟體呀\\ufeff\",\n
|
1520
|
+
\ \"canRate\": false,\n \"viewerRating\": \"none\",\n \"likeCount\":
|
1521
|
+
0,\n \"publishedAt\": \"2015-08-25T13:35:37.000Z\",\n \"updatedAt\":
|
1522
|
+
\"2015-08-25T13:35:37.000Z\"\n }\n },\n \"canReply\": false,\n \"totalReplyCount\":
|
1523
|
+
2,\n \"isPublic\": true\n }\n },\n {\n \"kind\": \"youtube#commentThread\",\n
|
1524
|
+
\ \"etag\": \"\\\"sZ5p5Mo8dPpfIzLYQBF8QIQJym0/D1p0v79FYL0_-jM937XCtPIbKg4\\\"\",\n
|
1525
|
+
\ \"id\": \"z13tg3jpkrrhdpvnf22jvfijikzmgvv5k04\",\n \"snippet\": {\n \"videoId\":
|
1526
|
+
\"FugHj7MGhss\",\n \"topLevelComment\": {\n \"kind\": \"youtube#comment\",\n
|
1527
|
+
\ \"etag\": \"\\\"sZ5p5Mo8dPpfIzLYQBF8QIQJym0/0t39um8IcYfTt30MGx1WgK4rCRE\\\"\",\n
|
1528
|
+
\ \"id\": \"z13tg3jpkrrhdpvnf22jvfijikzmgvv5k04\",\n \"snippet\": {\n
|
1529
|
+
\ \"authorDisplayName\": \"Jian Jin\",\n \"authorProfileImageUrl\":
|
1530
|
+
\"https://lh3.googleusercontent.com/-D4NgeTNp59w/AAAAAAAAAAI/AAAAAAAAGg8/Tf-EyLL33hk/photo.jpg?sz=50\",\n
|
1531
|
+
\ \"authorChannelUrl\": \"http://www.youtube.com/channel/UCbnrh7OTF2SdnoaWGN-37WA\",\n
|
1532
|
+
\ \"authorChannelId\": {\n \"value\": \"UCbnrh7OTF2SdnoaWGN-37WA\"\n
|
1533
|
+
\ },\n \"videoId\": \"FugHj7MGhss\",\n \"textDisplay\": \"6666666666666666666666666666\\ufeff\",\n
|
1534
|
+
\ \"canRate\": false,\n \"viewerRating\": \"none\",\n \"likeCount\":
|
1535
|
+
0,\n \"publishedAt\": \"2015-11-22T15:19:50.000Z\",\n \"updatedAt\":
|
1536
|
+
\"2015-11-22T15:19:50.000Z\"\n }\n },\n \"canReply\": false,\n \"totalReplyCount\":
|
1537
|
+
0,\n \"isPublic\": true\n }\n },\n {\n \"kind\": \"youtube#commentThread\",\n
|
1538
|
+
\ \"etag\": \"\\\"sZ5p5Mo8dPpfIzLYQBF8QIQJym0/rUrG1kQsEhMKRZJclF_wj2x7rqU\\\"\",\n
|
1539
|
+
\ \"id\": \"z12sf1u5bovdzdl3f23gwvexczryufww304\",\n \"snippet\": {\n \"videoId\":
|
1540
|
+
\"FugHj7MGhss\",\n \"topLevelComment\": {\n \"kind\": \"youtube#comment\",\n
|
1541
|
+
\ \"etag\": \"\\\"sZ5p5Mo8dPpfIzLYQBF8QIQJym0/unnx2p5A35zBmtQp9K80TbDp9Ys\\\"\",\n
|
1542
|
+
\ \"id\": \"z12sf1u5bovdzdl3f23gwvexczryufww304\",\n \"snippet\": {\n
|
1543
|
+
\ \"authorDisplayName\": \"cainiao yihao\",\n \"authorProfileImageUrl\":
|
1544
|
+
\"https://lh3.googleusercontent.com/-4QHPtAXz2Qw/AAAAAAAAAAI/AAAAAAAAABo/Ikj7FSRp77w/photo.jpg?sz=50\",\n
|
1545
|
+
\ \"authorChannelUrl\": \"http://www.youtube.com/channel/UCXG_fWi6mWi7nJlptdbiW4Q\",\n
|
1546
|
+
\ \"authorChannelId\": {\n \"value\": \"UCXG_fWi6mWi7nJlptdbiW4Q\"\n
|
1547
|
+
\ },\n \"videoId\": \"FugHj7MGhss\",\n \"textDisplay\": \"二柯是斗鱼四大歌姬之一,
|
1548
|
+
音乐专业科班出身的.\\u003cbr /\\u003e另外三个是陈一发, 冯提莫, 大表姐. 这几个女主播是斗鱼少有的几个不卖肉的.\\u003cbr
|
1549
|
+
/\\u003e不知道现在是不是还这样, 不太看斗鱼了.\\ufeff\",\n \"canRate\": false,\n \"viewerRating\":
|
1550
|
+
\"none\",\n \"likeCount\": 1,\n \"publishedAt\": \"2015-07-07T17:19:50.000Z\",\n
|
1551
|
+
\ \"updatedAt\": \"2015-07-07T17:21:50.000Z\"\n }\n },\n \"canReply\":
|
1552
|
+
false,\n \"totalReplyCount\": 2,\n \"isPublic\": true\n }\n },\n
|
1553
|
+
\ {\n \"kind\": \"youtube#commentThread\",\n \"etag\": \"\\\"sZ5p5Mo8dPpfIzLYQBF8QIQJym0/-__E_AXQOr4eLbyDqD6pCYdf2-0\\\"\",\n
|
1554
|
+
\ \"id\": \"z12rcfxp2qbus5t5204chruwqvrsg3pgs1c\",\n \"snippet\": {\n \"videoId\":
|
1555
|
+
\"FugHj7MGhss\",\n \"topLevelComment\": {\n \"kind\": \"youtube#comment\",\n
|
1556
|
+
\ \"etag\": \"\\\"sZ5p5Mo8dPpfIzLYQBF8QIQJym0/geBGpqSSY18fh8RyQ0VMHM8FaSU\\\"\",\n
|
1557
|
+
\ \"id\": \"z12rcfxp2qbus5t5204chruwqvrsg3pgs1c\",\n \"snippet\": {\n
|
1558
|
+
\ \"authorDisplayName\": \"Yuewen Liu\",\n \"authorProfileImageUrl\":
|
1559
|
+
\"https://lh5.googleusercontent.com/-SLa7gkkztFE/AAAAAAAAAAI/AAAAAAAAAtc/dfhJv_PwwmU/photo.jpg?sz=50\",\n
|
1560
|
+
\ \"authorChannelUrl\": \"http://www.youtube.com/channel/UCSFPBrpUccIyAysJE8f5_rw\",\n
|
1561
|
+
\ \"authorChannelId\": {\n \"value\": \"UCSFPBrpUccIyAysJE8f5_rw\"\n
|
1562
|
+
\ },\n \"videoId\": \"FugHj7MGhss\",\n \"textDisplay\": \"66666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666\\ufeff\",\n
|
1563
|
+
\ \"canRate\": false,\n \"viewerRating\": \"none\",\n \"likeCount\":
|
1564
|
+
0,\n \"publishedAt\": \"2015-10-06T11:47:50.000Z\",\n \"updatedAt\":
|
1565
|
+
\"2015-10-06T11:47:50.000Z\"\n }\n },\n \"canReply\": false,\n \"totalReplyCount\":
|
1566
|
+
3,\n \"isPublic\": true\n }\n }\n ]\n}\n"
|
1567
|
+
http_version:
|
1568
|
+
recorded_at: Thu, 27 Oct 2016 07:02:35 GMT
|
1569
|
+
- request:
|
1570
|
+
method: get
|
1571
|
+
uri: https://www.googleapis.com/youtube/v3/comments?fields=items(snippet(authorChannelId,authorChannelUrl,authorDisplayName,authorProfileImageUrl,likeCount))&id=z13ryv5pynjvtfgst23iy5uxhsrkvzzfz&key=<API_KEY>&part=snippet
|
1572
|
+
body:
|
1573
|
+
encoding: US-ASCII
|
1574
|
+
string: ''
|
1575
|
+
headers:
|
1576
|
+
Connection:
|
1577
|
+
- close
|
1578
|
+
Host:
|
1579
|
+
- www.googleapis.com
|
1580
|
+
User-Agent:
|
1581
|
+
- http.rb/2.0.3
|
1582
|
+
response:
|
1583
|
+
status:
|
1584
|
+
code: 200
|
1585
|
+
message: OK
|
1586
|
+
headers:
|
1587
|
+
Expires:
|
1588
|
+
- Thu, 27 Oct 2016 15:15:04 GMT
|
1589
|
+
Date:
|
1590
|
+
- Thu, 27 Oct 2016 15:15:04 GMT
|
1591
|
+
Cache-Control:
|
1592
|
+
- private, max-age=0, must-revalidate, no-transform
|
1593
|
+
Etag:
|
1594
|
+
- '"sZ5p5Mo8dPpfIzLYQBF8QIQJym0/qeBiXzwrS6i_SuXwVQOY4ZkW4o4"'
|
1595
|
+
Vary:
|
1596
|
+
- Origin
|
1597
|
+
- X-Origin
|
1598
|
+
Content-Type:
|
1599
|
+
- application/json; charset=UTF-8
|
1600
|
+
X-Content-Type-Options:
|
1601
|
+
- nosniff
|
1602
|
+
X-Frame-Options:
|
1603
|
+
- SAMEORIGIN
|
1604
|
+
X-Xss-Protection:
|
1605
|
+
- 1; mode=block
|
1606
|
+
Content-Length:
|
1607
|
+
- '396'
|
1608
|
+
Server:
|
1609
|
+
- GSE
|
1610
|
+
Alt-Svc:
|
1611
|
+
- quic=":443"; ma=2592000; v="36,35,34,33,32"
|
1612
|
+
Connection:
|
1613
|
+
- close
|
1614
|
+
body:
|
1615
|
+
encoding: UTF-8
|
1616
|
+
string: |
|
1617
|
+
{
|
1618
|
+
"items": [
|
1619
|
+
{
|
1620
|
+
"snippet": {
|
1621
|
+
"authorDisplayName": "leevihermanni",
|
1622
|
+
"authorProfileImageUrl": "https://lh4.googleusercontent.com/-bzwXkvW61w8/AAAAAAAAAAI/AAAAAAAAAE4/G9k7waSjzVg/photo.jpg?sz=50",
|
1623
|
+
"authorChannelUrl": "http://www.youtube.com/channel/UC8DJocIvsARy4NCaO3Pl1ZA",
|
1624
|
+
"authorChannelId": {
|
1625
|
+
"value": "UC8DJocIvsARy4NCaO3Pl1ZA"
|
1626
|
+
},
|
1627
|
+
"likeCount": 1
|
1628
|
+
}
|
1629
|
+
}
|
1630
|
+
]
|
1631
|
+
}
|
1632
|
+
http_version:
|
1633
|
+
recorded_at: Thu, 27 Oct 2016 15:15:04 GMT
|
1634
|
+
recorded_with: VCR 3.0.3
|