A simple way to add Minecraft authentication to your website or project.
Many developers who have tried to implement user authentication through Minecraft's official system using Microsoft have encountered various difficulties. One of the main issues is the requirement to create and get approval for an authentication application directly from Microsoft, which can be a challenging task.
Our service provides an authentication system that does not require complex actions from either users or developers.
- 📋 Retrieve nickname and UUID via REST API
- 🛡️ Zero Trust (Impossible for users to spoof Minecraft account data)
- ⚡ Easy to use and implement
- 🔒 The server handles only the authentication flow and nothing more
- Add a form on your website or project for entering a 6-digit code.
- After the user inputs the code provided by the server upon login, make a request to the API endpoint described below.
GET /code/<6-digit code>
{
"statusCode": 200,
"nickname": "AndcoolSystems",
"UUID": "1420c63cb1114453993fb3479ba1d4c6"
}
Note
The code can only be used once and is valid for up to 5 minutes after it is issued to the client. After that, it is automatically deleted.