1

我正在使用 discord.py 为不和谐的机器人编写代码,并且我有一个命令来向服务器验证 Minecraft 帐户。我想使用 API 检查帐户以确保它们有效。现在,我可以使用以下代码使用请求来检查 Java 帐户是否有效:

import requests
import discord

username = 'playersusername' #the player username would be replaced with a value coming from the bot, this is just test code
url = f'https://api.mojang.com/users/profiles/minecraft/{username}?'
javacheck = requests.get(url)
status = javacheck.status_code
print(javacheck.status_code)

if status != 204: #makes sure the page exists. when it doesn't the api throws 204
    uuid = javacheck.json()['ID']
    print(uuid)

但是,我无法找到任何方法来使用 Xbox Live API(对于我的基岩版玩家)进行这项工作,任何人都可以帮助我朝着正确的方向前进吗?

4

0 回答 0