3XMHFVP5ITNNNB4HCIKDAJ3CDXGIACKD7MKSIVVQH76E36HOBNYQC
TNNO5GDCKRLUWOTILTTILXH4IRLGWFIP5ZGWKPVOQ2C3TAAGESLAC
# NíðhöggrA custom implementation of the Yggdrasil Minecraft auth server.
# Níðhöggr
A custom implementation of the Yggdrasil Minecraft auth server.
@app.route('/')
def generate_error(): error = { "error": "Bad request", "errorMessage": "Your request was invalid." } return error@app.route('/', methods=['GET'])
def generate_error():
error = {
"error": "Bad request",
"errorMessage": "Your request was invalid."
}
return error
@app.route('/', methods=['GET'])
# Auth endpoint@app.route('/authenticate', methods=['POST'])def authenticate_route(): return jsonify(generate_error())
# Auth endpoint
@app.route('/authenticate', methods=['POST'])
def authenticate_route():
return jsonify(generate_error())