Google 相册 API 服务 obj NoneType' 对象没有属性“相册”

问题描述

我想达到什么目的?

将给定目录中的照片上传到 Google 相册

参考链接 Guide I am using

文件

Google.py:它根据需要创建服务对象

main.py:我从 Google.py 导入了 Service obj

Google.py

import pickle
import os
from google_auth_oauthlib.flow import Flow,InstalledAppFlow
from googleapiclient.discovery import build
from googleapiclient.http import MediaFileUpload
from google.auth.transport.requests import Request

def Create_Service(client_secret_file,api_name,api_version,*scopes):
    print(client_secret_file,scopes,sep='-')
    CLIENT_SECRET_FILE = client_secret_file
    API_SERVICE_NAME = api_name
    API_VERSION = api_version
    ScopES = [scope for scope in scopes[0]]

    cred = None

    pickle_file = f'token_{API_SERVICE_NAME}_{API_VERSION}.pickle'
    # print(pickle_file)

    if os.path.exists(pickle_file):
        with open(pickle_file,'rb') as token:
            cred = pickle.load(token)

    if not cred or not cred.valid:
        if cred and cred.expired and cred.refresh_token:
            cred.refresh(Request())
        else:
            flow = InstalledAppFlow.from_client_secrets_file(CLIENT_SECRET_FILE,ScopES)
            cred = flow.run_local_server()

        with open(pickle_file,'wb') as token:
            pickle.dump(cred,token)


    service = build(API_SERVICE_NAME,API_VERSION,credentials=cred)
    print(API_SERVICE_NAME,'service created successfully')
    return service
     
   #Error 1 will be there if include try block
   # except Exception as e:
   # print(e)
   # return None

main.py

import os
from Google import Create_Service

API_NAME = 'photoslibrary'
API_VERSION = 'v1'
CLIENT_SECRET_FILE = 'client.json'
ScopES = ['https://www.googleapis.com/auth/photoslibrary','https://www.googleapis.com/auth/photoslibrary.sharing']

service = Create_Service(CLIENT_SECRET_FILE,API_NAME,ScopES)          
repons = service.albums().list().execute()

问题

在 main.py 文件服务中,var 应该包含专辑和其他方法。但它不在那里?

但是,我已经完成了身份验证,没有错误

生成新的令牌文件没问题。

错误 1

  Traceback (most recent call last):
  File "/home/owais/Fiverr/GooglePhotos/photos/main.py",line 11,in <module>
    repons = service.albums().list().execute()
AttributeError: 'nonetype' object has no attribute 'albums'

错误 2

   return wrapped(*args,**kwargs)
  File "/home/owais/.local/lib/python3.7/site-packages/googleapiclient/discovery.py",line 300,in build
    static_discovery=static_discovery,File "/home/owais/.local/lib/python3.7/site-packages/googleapiclient/discovery.py",line 405,in _retrieve_discovery_doc
    raise UnkNownApiNameOrVersion("name: %s  version: %s" % (serviceName,version))
googleapiclient.errors.UnkNownApiNameOrVersion: name: photoslibrary  version: v1

我做了什么。

为编写新代码创建了新文件,但错误存在。

此外还做了一个新项目!

看起来 Google 正在屏蔽我!

但谷歌控制台没有错误或警告。

解决方法

添加参数static_discovery=False

service = build(API_SERVICE_NAME,API_VERSION,credentials=cred,static_discovery=False)

Google Photos API - new version?

相关问答

Selenium Web驱动程序和Java。元素在(x,y)点处不可单击。其...
Python-如何使用点“。” 访问字典成员?
Java 字符串是不可变的。到底是什么意思?
Java中的“ final”关键字如何工作?(我仍然可以修改对象。...
“loop:”在Java代码中。这是什么,为什么要编译?
java.lang.ClassNotFoundException:sun.jdbc.odbc.JdbcOdbc...