Как добавить области в явные HTTP-запросы к Google Calendar API? - PullRequest
0 голосов
/ 05 мая 2020

Я пытаюсь вызвать Calendar REST api, используя библиотеку запросов python в веб-приложении django. Я использовал django -social-auth для входа пользователя с использованием учетных записей Google.

Следуя соответствующему коду для запросов -

def index(request):
    if request.user.is_authenticated:
        social = request.user.social_auth.get(provider='google-oauth2')
        response = requests.get('https://www.googleapis.com/calendar/v3/users/me/calendarList',
            params={'access_token': social.extra_data['access_token']})
        print(response.text)

    return render(request, 'main/index.html')

Я получаю следующее сообщение об ошибке в теле ответа - Insufficient Permission: Request had insufficient authentication scopes.

Я думаю, нам нужно добавить переменную scopes для запроса, но не совсем уверен, как это сделать.

1 Ответ

0 голосов
/ 05 мая 2020

Возможно, вы захотите следовать официальному Python образцу Python quickstart

Scopes - это просто массив, поэтому вы можете добавить больше одного. Помните, однако, что если вы измените область видимости в своем коде, вам необходимо повторно аутентифицировать пользователя, прежде чем он собирается принять изменение, поэтому пользователь должен дать согласие на новую область действия.

from __future__ import print_function
import datetime
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/calendar.readonly']


def main():
    """Shows basic usage of the Google Calendar API.
    Prints the start and name of the next 10 events on the user's calendar.
    """
    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(
                'credentials.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('calendar', 'v3', credentials=creds)

    # Call the Calendar API
    now = datetime.datetime.utcnow().isoformat() + 'Z' # 'Z' indicates UTC time
    print('Getting the upcoming 10 events')
    events_result = service.events().list(calendarId='primary', timeMin=now,
                                        maxResults=10, singleEvents=True,
                                        orderBy='startTime').execute()
    events = events_result.get('items', [])

    if not events:
        print('No upcoming events found.')
    for event in events:
        start = event['start'].get('dateTime', event['start'].get('date'))
        print(start, event['summary'])


if __name__ == '__main__':
    main()
...