"Error 403: access_denied" 来自 Google 身份验证网站 api 尽管 google 帐户是所有者
"Error 403: access_denied" from Google authentication web api despite google account being owner
我正在使用 google here 提供的默认代码,我不太明白为什么它不起作用。代码输出提示Please visit this URL to authorize this application: [google login URL]
。在 google 开发人员控制台下尝试使用指定为脚本所有者的帐户登录时,出现 Error 403: access_denied
错误消息 The developer hasn’t given you access to this app. It’s currently being tested and it hasn’t been verified by Google. If you think you should have access, contact the developer [the email I just tried to log in with].
from __future__ import print_function
import pickle
import os.path
from googleapiclient.discovery import build
from google_auth_oauthlib.flow import InstalledAppFlow
from google.auth.transport.requests import Request
# If modifying these scopes, delete the file token.pickle.
SCOPES = ['https://www.googleapis.com/auth/spreadsheets.readonly']
# The ID and range of a sample spreadsheet.
SAMPLE_SPREADSHEET_ID = '1vrZpCGW58qCCEfVXoJYlwlulraIlfWI2SmFXa1iPtuU'
SAMPLE_RANGE_NAME = 'Class Data!A2:E'
def main():
"""Shows basic usage of the Sheets API.
Prints values from a sample spreadsheet.
"""
creds = None
# The file token.pickle stores the user's access and refresh tokens, and is
# created automatically when the authorization flow completes for the first
# time.
if os.path.exists('token.pickle'):
with open('token.pickle', 'rb') as token:
creds = pickle.load(token)
# If there are no (valid) credentials available, let the user log in.
if not creds or not creds.valid:
if creds and creds.expired and creds.refresh_token:
creds.refresh(Request())
else:
flow = InstalledAppFlow.from_client_secrets_file(
'Google_API_Key.json', SCOPES)
creds = flow.run_local_server(port=0)
# Save the credentials for the next run
with open('token.pickle', 'wb') as token:
pickle.dump(creds, token)
service = build('sheets', 'v4', credentials=creds)
# Call the Sheets API
sheet = service.spreadsheets()
result = sheet.values().get(spreadsheetId=SAMPLE_SPREADSHEET_ID,
range=SAMPLE_RANGE_NAME).execute()
values = result.get('values', [])
if not values:
print('No data found.')
else:
print('Name, Major:')
for row in values:
# Print columns A and E, which correspond to indices 0 and 4.
print('%s, %s' % (row[0], row[4]))
def PrintToSheets():
main()
您收到的错误消息与您的应用程序尚未 verified 这一事实有关。
如 link 中所述,所有使用敏感范围访问 google API 的应用程序都需要通过 google 的验证过程。通常,在您的应用程序将被锁定之前,您会获得 100 个访问您的应用程序的用户的宽限期,并且在您验证您的应用程序之前,您将无法授权更多用户,听起来您可能已经达到了这一点。
您唯一的选择是通过验证过程或在 Google 开发人员控制台上创建一个全新的项目并使用该客户端 ID,因为您正在使用的客户端 ID 目前已锁定供其他用户使用。
更新变更
已在 Google 开发人员控制台上实施更改。您现在必须授权用户/测试人员在通过验证过程之前访问您的应用程序。如果您转到项目的 Google 开发人员控制台,在同意屏幕下您会找到以下部分
您可以在此处添加测试用户,但是您不能删除它们,而且您只能添加其中的 100 个,因此请明智地使用它。
为我解决这个问题非常简单:
- 转到https://console.developers.google.com/
- 在左上角“Google APIs”旁边,单击右侧的项目下拉列表
- 确保选择了正确的项目
- 点击屏幕左侧(“凭据”下方)的“OAuth 同意屏幕”
- 如果您尚未创建同意屏幕,请先创建
- 在“测试用户”下有一个名为“+ 添加用户”的按钮
- 键入您将用于测试的帐户的电子邮件,按回车键,然后单击保存。
- 现在应该可以了!
好像他们最近更新了这个,因为去年我不必这样做。
我正在使用 google here 提供的默认代码,我不太明白为什么它不起作用。代码输出提示Please visit this URL to authorize this application: [google login URL]
。在 google 开发人员控制台下尝试使用指定为脚本所有者的帐户登录时,出现 Error 403: access_denied
错误消息 The developer hasn’t given you access to this app. It’s currently being tested and it hasn’t been verified by Google. If you think you should have access, contact the developer [the email I just tried to log in with].
from __future__ import print_function
import pickle
import os.path
from googleapiclient.discovery import build
from google_auth_oauthlib.flow import InstalledAppFlow
from google.auth.transport.requests import Request
# If modifying these scopes, delete the file token.pickle.
SCOPES = ['https://www.googleapis.com/auth/spreadsheets.readonly']
# The ID and range of a sample spreadsheet.
SAMPLE_SPREADSHEET_ID = '1vrZpCGW58qCCEfVXoJYlwlulraIlfWI2SmFXa1iPtuU'
SAMPLE_RANGE_NAME = 'Class Data!A2:E'
def main():
"""Shows basic usage of the Sheets API.
Prints values from a sample spreadsheet.
"""
creds = None
# The file token.pickle stores the user's access and refresh tokens, and is
# created automatically when the authorization flow completes for the first
# time.
if os.path.exists('token.pickle'):
with open('token.pickle', 'rb') as token:
creds = pickle.load(token)
# If there are no (valid) credentials available, let the user log in.
if not creds or not creds.valid:
if creds and creds.expired and creds.refresh_token:
creds.refresh(Request())
else:
flow = InstalledAppFlow.from_client_secrets_file(
'Google_API_Key.json', SCOPES)
creds = flow.run_local_server(port=0)
# Save the credentials for the next run
with open('token.pickle', 'wb') as token:
pickle.dump(creds, token)
service = build('sheets', 'v4', credentials=creds)
# Call the Sheets API
sheet = service.spreadsheets()
result = sheet.values().get(spreadsheetId=SAMPLE_SPREADSHEET_ID,
range=SAMPLE_RANGE_NAME).execute()
values = result.get('values', [])
if not values:
print('No data found.')
else:
print('Name, Major:')
for row in values:
# Print columns A and E, which correspond to indices 0 and 4.
print('%s, %s' % (row[0], row[4]))
def PrintToSheets():
main()
您收到的错误消息与您的应用程序尚未 verified 这一事实有关。
如 link 中所述,所有使用敏感范围访问 google API 的应用程序都需要通过 google 的验证过程。通常,在您的应用程序将被锁定之前,您会获得 100 个访问您的应用程序的用户的宽限期,并且在您验证您的应用程序之前,您将无法授权更多用户,听起来您可能已经达到了这一点。
您唯一的选择是通过验证过程或在 Google 开发人员控制台上创建一个全新的项目并使用该客户端 ID,因为您正在使用的客户端 ID 目前已锁定供其他用户使用。
更新变更
已在 Google 开发人员控制台上实施更改。您现在必须授权用户/测试人员在通过验证过程之前访问您的应用程序。如果您转到项目的 Google 开发人员控制台,在同意屏幕下您会找到以下部分
您可以在此处添加测试用户,但是您不能删除它们,而且您只能添加其中的 100 个,因此请明智地使用它。
为我解决这个问题非常简单:
- 转到https://console.developers.google.com/
- 在左上角“Google APIs”旁边,单击右侧的项目下拉列表
- 确保选择了正确的项目
- 点击屏幕左侧(“凭据”下方)的“OAuth 同意屏幕”
- 如果您尚未创建同意屏幕,请先创建
- 在“测试用户”下有一个名为“+ 添加用户”的按钮
- 键入您将用于测试的帐户的电子邮件,按回车键,然后单击保存。
- 现在应该可以了!
好像他们最近更新了这个,因为去年我不必这样做。