使用Python通过api在Youtube频道视频上发表评论

时间:2014-12-04 13:54:40

标签: python python-3.x youtube youtube-api youtube-channels

我有一个频道ID,我有一个视频ID。如何通过API在该频道视频上发表评论。我有以下片段:

url = 'https://gdata.youtube.com/feeds/api/videos/'+str(entity)+'/comments'
values = { 'Content-Type': 'application/atom+xml','Content-Length' :len(str(message)),'Authorization': str(access_token),'GData-Version' : 2 , 'X-GData-Key': 'AIzaSyApCAE4SbaCtSOAKayxMS6qFNNWbtzhhSo'}
data = urllib.urlencode(values)
req =  urllib2.Request(url, data,method='POST')
req.add_header('Accept', 'application/json')
response = urllib2.urlopen(req)
result = response.read()
print (result)

它会出现以下错误。

HTTP 415 Error: Unsupported Media Type

我被困在这里几天了。请帮帮我。 我还阅读了以下主题。我提供了以下链接。

https://developers.google.com/youtube/2.0/developers_guide_protocol_comments#Retrieve_commentshttps://developers.google.com/youtube/articles/changes_to_comments#create-comments

提前致谢。

1 个答案:

答案 0 :(得分:0)

不推荐使用

v2,很快就会发布Data API v3中的评论功能。 这是跟踪器:https://code.google.com/p/gdata-issues/issues/detail?id=5046