alexk745
alexk745

Reputation: 38

Java Youtube api rate comment

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

Answers (1)

Buhake Sindi
Buhake Sindi

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

Related Questions