gpt4 book ai didi

python - 使用Python通过api在Youtube channel 视频上发表评论

转载 作者:行者123 更新时间:2023-12-03 05:40:02 24 4
gpt4 key购买 nike

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

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_comments
https://developers.google.com/youtube/articles/changes_to_comments#create-comments

提前致谢。

最佳答案

不建议使用第2版,Data API第3版中的注释功能将很快发布。
这是跟踪器:https://code.google.com/p/gdata-issues/issues/detail?id=5046

关于python - 使用Python通过api在Youtube channel 视频上发表评论,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27295823/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com