Fixed POST from auth to GET

This commit is contained in:
ZKWolf 2023-05-29 23:21:41 +02:00
parent f672102706
commit 71e6556047

View File

@ -67,7 +67,7 @@ def tex_get():
return jsonify({"status": "success"})
@app.route("/api/v1/auth/provider/steam/login", methods=["GET"])
@app.route("/api/v1/auth/provider/steam/login", methods=["POST"])
def steam_login():
# here we want to get the value of user (i.e. ?user=some-value)
steam_token = request.args.get('token')