我創建了一個Gmail帳戶並將其與Youtube鏈接。 我可以使用在YouTube網站上, 證書籤名,但是當我使用數據API,我得到這個錯誤Youtube:驗證錯誤(檢查服務名稱)
例外:
com.google.gdata.util.AuthenticationException: Error authenticating (check service name)
代碼:
YouTubeService service = new YouTubeService("", messages.get("youtube.devkey"));
try {
service.setUserCredentials("[email protected]", "alXXXX23");
} catch (AuthenticationException e) {
任何人都可以解釋爲什麼會發生這種情況和/或服務名稱是什麼?
建議的替代看看這篇博客文章查看ClientLogin可能無法成功的原因列表:http://apiblog.youtube.com/2011/03/clientlogin-fail.html –
這很有幫助。非常感謝:) – user1694214