上传youtube视频服务器端 [英] upload youtube video server side

查看:206
本文介绍了上传youtube视频服务器端的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在我的应用程序中,用户可以将视频直接上传到我的YouTube频道以公开。






  • 我的应用程序的客户端部分获取视频和将其上传到我的服务器。

  • 我的服务器然后使用Youtube API将视频上传到我的 youtube频道。



以下是我实施它的方法:


  1. 创建了一个新项目:



    但我无法让这个工作,我得到:

      GoogleJsonResponseException代码:
    com.google.api.client.googleapis.json.GoogleJsonResponseException:401 Unauthorized

    知道为什么?我可以查看什么?



    这里的API KEY是否足够?



    谢谢

    解决方案

    您需要一个完整的OAuth,也可以用作已安装的应用程序而非服务器应用程序。用户必须通过OAuth2。 Data API v3不支持服务帐户。



    更多信息: https:/ /developers.google.com/youtube/v3/guides/authentication



    您可以在此处查看Java示例: https://github.com/youtube/api-samples/tree/master/java


    In my application, the user can upload a video directly to my youtube channel to make it public.

    • The client part of my application acquires the video and uploads it to my server.
    • My server then uses Youtube API to upload the video to my youtube channel.

    And here is how I implemented it:

    1. Created a new project: https://console.developers.google.com/project

    2. Enabled YouTube Data API v3:

    3. Created a Key for server applications:

    4. Here's my java code:

      YouTube youtube = new YouTube.Builder(HTTP_TRANSPORT, JSON_FACTORY, new HttpRequestInitializer() {
          @Override
          public void initialize(HttpRequest httpRequest) throws IOException {
      
          }
      })//
      .setYouTubeRequestInitializer(new YouTubeRequestInitializer("XXXX"))//same as above
      .setApplicationName("Some Name")//is it important?
      .build();
      

    The rest of the java code is the same as the code samples

    But I can't get this to work, and I'm getting:

    GoogleJsonResponseException code:
    com.google.api.client.googleapis.json.GoogleJsonResponseException: 401 Unauthorized
    

    Any idea why? What Can I check?

    Is the API KEY sufficient here ?

    Thank you

    解决方案

    You need a full OAuth for this, also use as installed application rather server application. And user has to go through OAuth2. Service accounts are not supported in Data API v3.

    More info:https://developers.google.com/youtube/v3/guides/authentication

    You can check Java samples here: https://github.com/youtube/api-samples/tree/master/java

    这篇关于上传youtube视频服务器端的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆