尝试对客户端机密文件和OAuth 2.0使用Google API时出错

2024-05-17 05:07:06 发布

您现在位置:Python中文网/ 问答频道 /正文

我只是不明白我在使用YouTube API,尤其是客户端机密文件时做错了什么。

我按照google developers网站上的步骤创建了一个客户端机密文件

  1. 转到https://console.developers.google.com/
  2. 转到API管理器部分
  3. 转到凭据选项卡
  4. 添加凭据按钮->;OAuth 2.0客户端ID
  5. 应用程序类型->;Web应用程序
  6. 现在可以下载客户端机密文件

现在,我试着运行这个基本的代码片段,它出现在google developers网站https://developers.google.com/youtube/v3/code_samples/python#rate__like__a_video

    import httplib2
    import os
    import sys

    from apiclient.discovery import build
    from apiclient.errors import HttpError
    from oauth2client.client import flow_from_clientsecrets
    from oauth2client.file import Storage
    from oauth2client.tools import argparser, run_flow


    CLIENT_SECRETS_FILE = "C:\\Python27\\Projects\\YoutubeBot_client_secrets.json"

    # This variable defines a message to display if the CLIENT_SECRETS_FILE is
    # missing.
    MISSING_CLIENT_SECRETS_MESSAGE = "something went wrong."

    # This OAuth 2.0 access scope allows for full read/write access to the
    # authenticated user's account.
    YOUTUBE_READ_WRITE_SCOPE = "https://www.googleapis.com/auth/youtube"
    YOUTUBE_API_SERVICE_NAME = "youtube"
    YOUTUBE_API_VERSION = "v3"

    def get_authenticated_service(args):
      flow = flow_from_clientsecrets(CLIENT_SECRETS_FILE,
        scope=YOUTUBE_READ_WRITE_SCOPE,
        message=MISSING_CLIENT_SECRETS_MESSAGE)
      storage = Storage("%s-oauth2.json" % sys.argv[0])
      credentials = storage.get()
      if credentials is None or credentials.invalid:
        credentials = run_flow(flow, storage, args)
      return build(YOUTUBE_API_SERVICE_NAME, YOUTUBE_API_VERSION,
        http=credentials.authorize(httplib2.Http()))

    # Add the video rating. This code sets the rating to "like," but you could
    # also support an additional option that supports values of "like" and
    # "dislike."
    def like_video(youtube, video_id):
      youtube.videos().rate(
        id=video_id,
        rating="like"
      ).execute()

    if __name__ == "__main__":
      argparser.add_argument("--videoid", default="L-oNKK1CrnU", 
       help="ID of video to like.")
      args = argparser.parse_args()

      youtube = get_authenticated_service(args)
      try:
        like_video(youtube, "8hj6BK8WGtA" )
      except HttpError, e:
        print "An HTTP error %d occurred:\n%s" % (e.resp.status, e.content)
      else:
        print "%s has been liked." % args.videoid

我刚刚收到一个关于我的客户端机密文件的错误(the MISSING_CLIENT_SECRETS_MESSAGEerror):

SystemExit: something went wrong.

这就是根本原因-

---> 29     message=MISSING_CLIENT_SECRETS_MESSAGE)

Tags: thefromimportclientapi客户端youtubevideo