编程语言
首页 > 编程语言> > android – 以编程方式将视频上传到Youtube

android – 以编程方式将视频上传到Youtube

作者:互联网

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

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

但它抛出ServiceException,说明com.google.gdata.util.AuthenticationException:连接登录URI时出错
如何进行 ?

解决方法:

您似乎没有设置身份验证.

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

我还使用ServiceIntent打开了一个Android上传示例(YouTube Direct Lite).随意检查出来.

标签:android,youtube-api,gdata-api
来源: https://codeday.me/bug/20190629/1327412.html