web-dev-qa-db-ja.com

エラー400が発生:DjangoビューからGoogleスプレッドシートでOAuth2を使用しようとすると、redirect_uri_mismatch

DjangoビューからGoogle Sheets 'APIに接続しようとしています。このリンクから取得したコードの大部分: https://developers.google.com/ sheet/api/quickstart/python

とにかく、ここにコードがあります:

sheets.py(上のリンクからコピーを貼り付け、関数名を変更しました)

_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 = '1BxiMVs0XRA5nFMdKvBdBZjgmUUqptlbs74OgvE2upms'
SAMPLE_RANGE_NAME = 'Class Data!A2:E'

def test():
    """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(
                '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('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]))
_

urls.py

_urlpatterns = [
    path('', views.index, name='index')
]
_

views.py

_from Django.http import HttpResponse
from Django.shortcuts import render

from .sheets import test

# Views

def index(request):
    test()
    return HttpResponse('Hello world')
_

ビュー関数が行うのは、sheets.pyモジュールからtest()メソッドを呼び出すだけです。とにかく、サーバーを実行してURLにアクセスすると、Google oAuth2の別のタブが開きます。つまり、認証情報ファイルが検出され、すべてが表示されます。ただし、このタブでは、Googleから次のエラーメッセージが表示されます。

_Error 400: redirect_uri_mismatch The redirect URI in the request, http://localhost:65262/, does not match the ones authorized for the OAuth client.
_

私のAPIコンソールでは、コールバックURLを正確に_127.0.0.1:8000_に設定して、DjangoのビューURLと一致させています。 _http://localhost:65262/_ URLがどこから来たのかもわかりません。これを修正するのに助けはありますか?そして、誰かがこれがなぜ起こっているのか私に説明できますか?前もって感謝します。

[〜#〜] edit [〜#〜]コメントに記載されているように、フローメソッド内の_port=0_を削除しようとした後、 URLの不一致は_http://localhost:8080/_で発生します。これは、私のDjangoアプリが_8000_ポートで実行されているため、かなり奇妙です。

3
darkhorse

リダイレクトURIは、承認を返す場所をGoogleに通知します。これは、誰もがクライアントを乗っ取らないように、Googleデベロッパーコンソールで適切に設定する必要があります。完全に一致する必要があります。

宛先 Google開発者コンソール 。現在使用しているクライアントを編集し、リダイレクトURIとして次を追加します

http://localhost:65262/

enter image description here

ヒント:鉛筆アイコンをクリックしてクライアントを編集します:)

TBHの開発中は、グーグルが言っているポートを追加する方が簡単で、それからアプリケーションの設定をいじります。

0
DaImTo