Reputation: 38
How to rate CommentEntry? I know there is a method setTotalRating() but after calling this method, what must I do? service.insert(sth) ?
Upvotes: 0
Views: 444
Reputation: 89179
How about updating the comment?
YouTubeService service = new YouTubeService(clientID, developer_key);
//Done with authentication...blah...blah...blah...
//Done with rating...
//Update
service.update(new URL(commentURL), commentEntry);
Upvotes: 1