2012-05-20 202 views
0

如何評價CommentEntry? 我知道有一個方法setTotalRating()但調用此方法後,我該做什麼? service.insert(sth)?Java Youtube API評級評論

+0

你在使用什麼庫? 'CommentEntry'是什麼?,你沒有告訴我們任何要調查的東西。 –

+0

在Java的youtube API中,評論是CommentEntry。還有一種叫做setTotalRating(int x)的commententry方法。但它並沒有實際評價 – alexk745

回答

1

如何更新評論?

YouTubeService service = new YouTubeService(clientID, developer_key); 
//Done with authentication...blah...blah...blah... 

//Done with rating... 

//Update 
service.update(new URL(commentURL), commentEntry); 
+0

我認爲它會工作,但我得到com.google.gdata.util.InvalidEntryException:無效的請求URI – alexk745

+0

那麼,你的URI指向錯誤的評論然後。 –

+0

我應該如何獲得CommentEntry c的url? Btw thabks非常幫助我:D – alexk745