This commit is contained in:
Tracker-Friendly 2024-04-18 13:17:03 +01:00
parent 29be6ff5f3
commit 947606a96b
1 changed files with 1 additions and 1 deletions

2
main
View File

@ -251,7 +251,7 @@ async def apiopeniduserinfo():
@app.route("/api/auth") @app.route("/api/auth")
async def apiauthenticate(): async def apiauthenticate():
if request.method == "GET": if request.method == "GET":
secretKey = request.headers.get["secretKey"] secretKey = request.cookies.get["key"]
appId = request.args.get["client_id"] appId = request.args.get["client_id"]
code = request.args.get["code_challenge"] code = request.args.get["code_challenge"]
codemethod = request.args.get["code_challenge_method"] codemethod = request.args.get["code_challenge_method"]