4

我正在尝试以编程方式将视频上传到 youtube。我试过了

YouTubeService service = new YouTubeService(clientID,developer_key);
service.setUserCredentials("email", "password");

但它抛出 ServiceException 说明
com.google.gdata.util.AuthenticationException: Error connecting with login URI
如何继续?

4

1 回答 1

3

好像您没有设置身份验证。

我建议使用Data API v3。这是一个很棒的 java UPLOAD示例。

我还使用 ServiceIntent开源了一个 Android 上传示例(YouTube Direct Lite )。随意检查一下。

于 2013-05-13T02:56:28.967 回答