404使用状态和代码重定向到redirect_uri时

时间:2018-02-26 11:25:57

标签: python django redirect callback google-api

我正在尝试构建一个将使用YouTube Data API v3的django应用程序。 views.py中的部分代码

    YOUTUBE_READONLY_SCOPE = "https://www.googleapis.com/auth/youtube.readonly"
    YOUTUBE_API_SERVICE_NAME = "youtube"
    YOUTUBE_API_VERSION = "v3"



FLOW = flow_from_clientsecrets(
    settings.GOOGLE_OAUTH2_CLIENT_SECRETS_JSON,
    scope=YOUTUBE_READONLY_SCOPE)

FLOW.redirect_uri = "http://127.0.0.1:8000/accounts/google/login/callback/"

@login_required
def index(request):
  storage = DjangoORMStorage(CredentialsModel, 'id', request.user, 'credential')
  credential = storage.get()
  if credential is None or credential.invalid == True:

我被重定向到此。

enter image description here

登录后。它将我重定向到 -

enter image description here

我正在关注此google的链接。 我也拥有在Google云端平台中设置的所有值。

任何示例代码都会有所帮助。

0 个答案:

没有答案