Ошибка Google Scripts "В запросе недостаточно областей проверки подлинности"
Я получаю сообщение об ошибке при попытке выполнить сценарии Google App с моего локального компьютера (MAC OS, запуск Python 3 на возвышенном тексте), "Запрос имеет недостаточные области проверки подлинности".
Я проверил несколько других ответов Stackru на эту же ошибку. Я получаю это не с помощью специального приложения или вызова API электронных таблиц, а с собственным руководством по быстрому запуску Python от Google.
Я попытался включить все необходимые API для скриптов, электронных таблиц, дисков и gmail. Я также знаю, что программа нашла credentials.json в рабочем каталоге. Но я не могу пройти мимо ошибки. Я попытался переустановить Python и пакеты Google.
Любая помощь очень ценится, и дайте мне знать, если я смогу прояснить этот вопрос. Спасибо!
* Обновление: добавлен код по ссылке
"""
Shows basic usage of the Apps Script API.
Call the Apps Script API to create a new script project, upload a file to the
project, and log the script's URL to the user.
"""
from __future__ import print_function
from googleapiclient import errors
from googleapiclient.discovery import build
from httplib2 import Http
from oauth2client import file, client, tools
# If modifying these scopes, delete the file token.json.
SCOPES = 'https://www.googleapis.com/auth/script.projects'
SAMPLE_CODE = '''
function helloWorld() {
console.log("Hello, world!");
}
'''.strip()
SAMPLE_MANIFEST = '''
{
"timeZone": "America/New_York",
"exceptionLogging": "CLOUD"
}
'''.strip()
def main():
"""Calls the Apps Script API.
"""
# The file token.json stores the user's access and refresh tokens, and is
# created automatically when the authorization flow completes for the first
# time.
store = file.Storage('token.json')
creds = store.get()
if not creds or creds.invalid:
flow = client.flow_from_clientsecrets('credentials.json', SCOPES)
creds = tools.run_flow(flow, store)
service = build('script', 'v1', http=creds.authorize(Http()))
# Call the Apps Script API
try:
# Create a new project
request = {'title': 'My Script'}
response = service.projects().create(body=request).execute()
# Upload two files to the project
request = {
'files': [{
'name': 'hello',
'type': 'SERVER_JS',
'source': SAMPLE_CODE
}, {
'name': 'appsscript',
'type': 'JSON',
'source': SAMPLE_MANIFEST
}]
}
response = service.projects().updateContent(
body=request,
scriptId=response['scriptId']).execute()
print('https://script.google.com/d/' + response['scriptId'] + '/edit')
except errors.HttpError as error:
# The API encountered a problem.
print(error.content)
if __name__ == '__main__':
main()