您好,希望有人能提供帮助=) 我正在尝试使用Google API,并且构建实例没有属性。 Google的示例项目甚至都不起作用:https://developers.google.com/calendar/quickstart/python
我尝试使用以下方法重新安装库并强制重新安装: “ pip install --force-reinstall google-api-python-client”。
来自另一个Google网站的代码也不起作用:
from googleapiclient.discovery import build
API_KEY='my_apiKey'
GPLUS = build('plus', 'v1', developerKey=API_KEY)
TMPL = '''
User: %s
Date: %s
Post: %s
'''
items = GPLUS.event() # AttributeError: 'Resource' object has no attribute 'event'