Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm doing a Android App and I've done that an user can authenticate with OAuth 2.0 in a Youtube account. But when I try to rate a video which is the right URL to rate it.

I send a POST request with this string:
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

It return this response: "Response contains no content type"

Edit:

I use this link to check it: http://gdata.youtube.com/demo/index.html

I can do this action sending this POST URL: "https://gdata.youtube.com/feeds/api/videos/sxbHyiwYDiw/ratings"

Adding this headers

  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");

...and adding a xml body

You can check it in the first link: Youtube Demo.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.