I know the question is quite old, but hopefully my answer will be useful for anyone finding this post via Google.
The like/dislike element is documented at
http://code.google.com/apis/youtube/2.0/reference.html#youtube_data_api_tag_yt:rating
and the protocol examples are at
http://code.google.com/apis/youtube/2.0/developers_guide_protocol_ratings.html
The documentation says that in order to dislike/like a video, you can send an authenticated POST request to the video's ratings URL and set the value to "like"/"dislike".
As an alternative to setting like/dislike in your request (i.e. when using a library that requires numeric input) you could also rely on the fact that a 1 rating in the older numeric rating system corresponds to a "dislike" and a 5 rating corresponds to a "like".
Hope I could help.