我正试图将谷歌OAuth 2添加到3.10.Biglit 1.33 概念参考证据上,并在
这一选择没有成功,我决定把守则下载到我的项目中,并在当地操作。 我预示着该模块,然后在两页中添加到一个子里。
现在,以前没有问题的法典告诉我,奥特诺特语是站不住脚的。
我的客户文字突然出现问题:
from Google.Auth import Authenticate
# This code is now saying it is not callable
authMan = Authenticate(
secret_credentials_path= ./credentials.json ,
cookie_name= My-Cookie-Me ,
cookie_key= abc123 ,
redirect_uri=os.environ["CORE_SITE_URL"]
)
这里是来自Github的Ausenticate上尉。
import time
import streamlit as st
from typing import Literal
import google_auth_oauthlib.flow
from googleapiclient.discovery import build
from Google.Auth.cookie import CookieHandler
class Authenticate:
def __init__(self, secret_credentials_path: str, redirect_uri: str, cookie_name: str, cookie_key: str,
cookie_expiry_days: float = 30.0):
st.session_state[ connected ] = st.session_state.get( connected , False)
self.secret_credentials_path = secret_credentials_path
self.redirect_uri = redirect_uri
self.cookie_handler = CookieHandler(cookie_name,
cookie_key,
cookie_expiry_days)
显然,当我使用PyPl参考书时,所有工作都是通过在谷歌认证,但参考模块从未改变会议环境。 现在我甚至不能发出站不住脚的呼吁。
是否有任何人知道为什么没有工作?
谢谢!