Simple problem:
I'm using Youtube gdata through javascript to: Comment, Reply and Like/Dislike videos. Everything is working so far!
However, I'm trying to allow users to specifically like and dislike COMMENTS (the same way you can on native youtube.com). But I can't actually find the docs that explain how this is done.
I tried sending the follow to ...://gdata.youtube.com/feeds/api/videos/[video_id]/ratings
<entry xmlns="http://www.w3.org/2005/Atom"
xmlns:yt="http://gdata.youtube.com/schemas/2007">
<link rel="http://gdata.youtube.com/schemas/2007#in-reply-to"
type="application/atom+xml" href="<ID>"/>
<yt:rating value="like"/>
</entry>
But no joy. Any help would be appreciated! Thanks.