哪一个是正确的Youtube Api网址来为经认证的用户评分视频?
我正在做一个Android应用程序,并且我已经完成了,用户可以使用Youtube帐户中的OAuth 2.0进行身份验证。 但是,当我尝试对一个视频进行评分时,这个视频是正确的URL。
我用这个字符串发送一个POST请求:
https://gdata.youtube.com/feeds/api/videos/sxbHyiwYDiw/ratings?value=like&key=my_access_token&v=2
https://gdata.youtube.com/feeds/api/videos/video_id/ratings?value=like_or_dislike&key=my_access_token&v=2
它返回这个响应:“ Response contains no content type
”
编辑:
我使用这个链接检查它:http://gdata.youtube.com/demo/index.html
我可以通过发送此POST帖子来执行此操作:“https://gdata.youtube.com/feeds/api/videos/sxbHyiwYDiw/ratings”
添加这个标题
httppost.setHeader("POST", "/feeds/api/videos/sxbHyiwYDiw/ratings");
httppost.setHeader("GData-Version", "2");
httppost.setHeader("X-GData-Key", "key=*********");
httppost.setHeader("Authorization", "AuthSub token=" + getAccessToken());
httppost.setHeader("Content-Type", "application/atom+xml");
...并添加一个XML体
您可以在第一个链接中查看:Youtube演示。
链接地址: http://www.djcxy.com/p/28985.html上一篇: Which is the right Youtube Api URL to rate a video with an authenticated user?