{"id":12636,"date":"2026-05-31T20:03:52","date_gmt":"2026-05-31T17:03:52","guid":{"rendered":"https:\/\/vpesports.com\/minecraft\/mods\/alternative-authentication\/"},"modified":"2026-05-31T20:03:52","modified_gmt":"2026-05-31T17:03:52","slug":"alternative-authentication","status":"publish","type":"mod","link":"https:\/\/vpesports.com\/minecraft\/mods\/alternative-authentication\/","title":{"rendered":"Alternative Authentication"},"content":{"rendered":"<p># Alternative Authentication<\/p>\n<p>Alternative Authentication is a server-side mod that allows multiple third-party or custom authentication servers to coexist alongside Mojang&#8217;s. By default, two providers are configured: Mojang and Ely.by. You can add, remove, or reorder them freely.<\/p>\n<p>**Requirements:**<\/p>\n<p>&#8211; `online-mode=true` in `server.properties`<br \/>\n&#8211; `enforce-secure-profile=false` is recommended, players joining via third-party providers don&#8217;t have signed chat keys<\/p>\n<p>> **Server-side only.** Players using a third-party auth provider on the client need a compatible launcher or injector.<\/p>\n<p>## Features<\/p>\n<p>&#8211; \u2699\ufe0f Configurable list of authentication providers.<br \/>\n&#8211; \ud83d\udd10 Sequential provider fallback when a player joins the server<br \/>\n&#8211; \ud83d\udd12 Optional fallback prevention: if a username exists on a provider but authentication fails, further providers are not tried.<br \/>\n&#8211; \ud83d\udc55 Player texture support (skin and cape) via third-party skin servers<br \/>\n&#8211; \ud83d\udcdd Whitelist support across all configured providers<\/p>\n<p>## How It Works<\/p>\n<p>### Joining the Server<\/p>\n<p>When a player connects, each configured provider is tried in order until one successfully authenticates the session. If no provider succeeds, the player is denied access.<\/p>\n<p>If [`preventFallbackIfPlayerExists`](#preventfallbackifplayerexists) is enabled and a player&#8217;s username is found on a provider but authentication fails, no further providers are attempted. This prevents a user registered on a fallback service from impersonating an account on an earlier provider.<\/p>\n<p>### Whitelist<\/p>\n<p>When a player is added to the whitelist, each provider is queried in order until the username is resolved to a UUID. If the player is not found on any provider, they cannot be added. The order in which providers are checked is determined by the [`providers`](#providers) list in the config.<\/p>\n<p>#### What if two players share the same username across providers?<\/p>\n<p>By default, the first provider to resolve the username wins. If you need to whitelist a player whose username exists on a non-primary provider, temporarily reorder the [`providers`](#providers) list and add them manually with `\/whitelist add`.<\/p>\n<p>## Configuration<\/p>\n<p>The config file is created automatically at `config\/alternative-auth.json` on first launch.<\/p>\n<p>### `configVersion`<\/p>\n<p>The internal schema version. Managed automatically by the mod, do not edit this manually.<\/p>\n<p>### `debugMode`<\/p>\n<p>When `true`, detailed logs are written to the console during authentication and whitelist operations. Useful for troubleshooting. Disabled by default.<\/p>\n<p>### `preventFallbackIfPlayerExists`<\/p>\n<p>When `true`, stops the provider chain if a username is found on the current provider but authentication fails. Prevents username spoofing via fallback services, non-premium players with usernames unique to a fallback service are not affected. Disabled by default.<\/p>\n<p>### `providers`<\/p>\n<p>The ordered list of authentication providers. Each entry supports the following fields:<\/p>\n<p>| Field         | Required | Description                                                                                                                 |<br \/>\n|&#8212;&#8212;&#8212;&#8212;&#8212;|&#8212;&#8212;&#8212;-|&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;|<br \/>\n| `name`        | \u2705        | Display name for the provider                                                                                               |<br \/>\n| `checkUrl`    | \u2705        | Session validation endpoint, queried when a player joins the server                                                         |<br \/>\n| `profileUrl`  | \u2705        | Single username to UUID lookup endpoint, used for whitelist operations                                                      |<br \/>\n| `profilesUrl` | \u2705        | Batch username to UUID lookup endpoint                                                                                      |<br \/>\n| `propertyUrl` | \u274c        | Endpoint for fetching player properties such as skin and cape. Use `{0}` for the player&#8217;s username and `{1}` for their UUID |<\/p>\n<p>&#8220;`json<br \/>\n{<br \/>\n    &#8220;configVersion&#8221;: 1,<br \/>\n    &#8220;debugMode&#8221;: false,<br \/>\n    &#8220;preventFallbackIfPlayerExists&#8221;: false,<br \/>\n    &#8220;providers&#8221;: [<br \/>\n        {<br \/>\n            &#8220;name&#8221;: &#8220;Mojang&#8221;,<br \/>\n            &#8220;checkUrl&#8221;: &#8220;https:\/\/sessionserver.mojang.com\/session\/minecraft\/hasJoined&#8221;,<br \/>\n            &#8220;profileUrl&#8221;: &#8220;https:\/\/api.minecraftservices.com\/minecraft\/profile\/lookup\/name\/&#8221;,<br \/>\n            &#8220;profilesUrl&#8221;: &#8220;https:\/\/api.minecraftservices.com\/minecraft\/profile\/lookup\/bulk\/byname&#8221;<br \/>\n        },<br \/>\n        {<br \/>\n            &#8220;name&#8221;: &#8220;Ely.by&#8221;,<br \/>\n            &#8220;checkUrl&#8221;: &#8220;https:\/\/authserver.ely.by\/session\/hasJoined&#8221;,<br \/>\n            &#8220;profileUrl&#8221;: &#8220;https:\/\/authserver.ely.by\/api\/users\/profiles\/minecraft\/&#8221;,<br \/>\n            &#8220;profilesUrl&#8221;: &#8220;https:\/\/authserver.ely.by\/api\/profiles\/minecraft&#8221;,<br \/>\n            &#8220;propertyUrl&#8221;: &#8220;http:\/\/skinsystem.ely.by\/textures\/signed\/{0}&#8221;<br \/>\n        }<br \/>\n    ]<br \/>\n}<br \/>\n&#8220;`<\/p>\n<p>## FAQ<\/p>\n<p>### Q: Can&#8217;t join the server, &#8220;Invalid signature for profile public key&#8221;<\/p>\n<p>A: Install No Chat Reports on your server. Installing it on the client is recommended but not required.<\/p>\n<p>### Q: Is Forge or NeoForge supported?<\/p>\n<p>A: NeoForge support is planned.<\/p>\n<p>### Q: When will the mod be updated to the latest Minecraft version?<\/p>\n<p>A: The mod targets the latest stable release and is updated as time allows. Snapshot support is not planned.<\/p>\n<p>### Q: I found a bug, have a suggestion, or the mod isn&#8217;t working correctly<\/p>\n<p>A: Feel free to open an issue on GitHub!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Use third-party authentication servers, like Ely.by, on your server without interfering with Mojang authentication<\/p>\n","protected":false},"featured_media":12637,"template":"","meta":{"_minecraft_slug":"alternative-authentication","_minecraft_project_id":"iF6szt3y","_minecraft_author":"GGSkyOne","_minecraft_license":"MIT","_minecraft_downloads":4757,"_minecraft_follows":46,"_minecraft_client_side":"unsupported","_minecraft_server_side":"required","_minecraft_storage_type":"zip","_minecraft_archive_name":"alternative-authentication.zip","_minecraft_size_bytes":275439,"_minecraft_version_count":15,"_minecraft_updated_at":"2026-05-16T22:31:02.941289Z","_minecraft_date_created":"2024-10-02T08:43:51.478880Z","_minecraft_date_modified":"2026-03-28T14:09:42.797548Z","_minecraft_project_url":"https:\/\/modrinth.com\/mod\/alternative-authentication","_minecraft_icon_attachment_id":12637,"_minecraft_imported_at":"2026-05-31T17:03:52+00:00","_minecraft_import_hash":"0d168e1be63cf9a6e757d23282a6cfce","_minecraft_versions":"","_minecraft_links":"","_minecraft_gallery":"","_minecraft_api_metadata":""},"mod_category":[97,126,98,92],"mod_loader":[99,100],"minecraft_version":[110,111,112,113,114,115,116,117,118,119,120,46,47,48,49,50,51,52,53,54,55,56,57,58,59,36,60,93,94,101,102,62,37,40,41,73,74,38,78,79,80,81,82,83,167,163],"class_list":["post-12636","mod","type-mod","status-publish","has-post-thumbnail","hentry","mod_category-fabric","mod_category-management","mod_category-quilt","mod_category-utility","mod_loader-fabric","mod_loader-quilt","minecraft_version-1-14","minecraft_version-1-14-1","minecraft_version-1-14-2","minecraft_version-1-14-3","minecraft_version-1-14-4","minecraft_version-1-15","minecraft_version-1-15-1","minecraft_version-1-15-2","minecraft_version-1-16","minecraft_version-1-16-1","minecraft_version-1-16-2","minecraft_version-1-16-3","minecraft_version-1-16-4","minecraft_version-1-16-5","minecraft_version-1-17","minecraft_version-1-17-1","minecraft_version-1-18","minecraft_version-1-18-1","minecraft_version-1-18-2","minecraft_version-1-19","minecraft_version-1-19-1","minecraft_version-1-19-2","minecraft_version-1-19-3","minecraft_version-1-19-4","minecraft_version-1-20","minecraft_version-1-20-1","minecraft_version-1-20-2","minecraft_version-1-20-3","minecraft_version-1-20-4","minecraft_version-1-20-5","minecraft_version-1-20-6","minecraft_version-1-21","minecraft_version-1-21-1","minecraft_version-1-21-10","minecraft_version-1-21-11","minecraft_version-1-21-2","minecraft_version-1-21-3","minecraft_version-1-21-4","minecraft_version-1-21-5","minecraft_version-1-21-6","minecraft_version-1-21-7","minecraft_version-1-21-8","minecraft_version-1-21-9","minecraft_version-26-1","minecraft_version-26-1-1","minecraft_version-26-1-2"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.6 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Alternative Authentication - Minecraft<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/vpesports.com\/minecraft\/mods\/alternative-authentication\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Alternative Authentication - Minecraft\" \/>\n<meta property=\"og:description\" content=\"Use third-party authentication servers, like Ely.by, on your server without interfering with Mojang authentication\" \/>\n<meta property=\"og:url\" content=\"https:\/\/vpesports.com\/minecraft\/mods\/alternative-authentication\/\" \/>\n<meta property=\"og:site_name\" content=\"Minecraft\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/alternative-authentication\\\/\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/alternative-authentication\\\/\",\"name\":\"Alternative Authentication - Minecraft\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/alternative-authentication\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/alternative-authentication\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/05\\\/alternative-authentication-icon-bbdbd892ed1d6b20a66285b8a62f554ce73814bf_96.webp\",\"datePublished\":\"2026-05-31T17:03:52+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/alternative-authentication\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/alternative-authentication\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/alternative-authentication\\\/#primaryimage\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/05\\\/alternative-authentication-icon-bbdbd892ed1d6b20a66285b8a62f554ce73814bf_96.webp\",\"contentUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/05\\\/alternative-authentication-icon-bbdbd892ed1d6b20a66285b8a62f554ce73814bf_96.webp\",\"width\":96,\"height\":96},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/alternative-authentication\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Mods\",\"item\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Alternative Authentication\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/#website\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/\",\"name\":\"Minecraft\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Alternative Authentication - Minecraft","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/vpesports.com\/minecraft\/mods\/alternative-authentication\/","og_locale":"en_US","og_type":"article","og_title":"Alternative Authentication - Minecraft","og_description":"Use third-party authentication servers, like Ely.by, on your server without interfering with Mojang authentication","og_url":"https:\/\/vpesports.com\/minecraft\/mods\/alternative-authentication\/","og_site_name":"Minecraft","twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/vpesports.com\/minecraft\/mods\/alternative-authentication\/","url":"https:\/\/vpesports.com\/minecraft\/mods\/alternative-authentication\/","name":"Alternative Authentication - Minecraft","isPartOf":{"@id":"https:\/\/vpesports.com\/minecraft\/#website"},"primaryImageOfPage":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/alternative-authentication\/#primaryimage"},"image":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/alternative-authentication\/#primaryimage"},"thumbnailUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/05\/alternative-authentication-icon-bbdbd892ed1d6b20a66285b8a62f554ce73814bf_96.webp","datePublished":"2026-05-31T17:03:52+00:00","breadcrumb":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/alternative-authentication\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/vpesports.com\/minecraft\/mods\/alternative-authentication\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/vpesports.com\/minecraft\/mods\/alternative-authentication\/#primaryimage","url":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/05\/alternative-authentication-icon-bbdbd892ed1d6b20a66285b8a62f554ce73814bf_96.webp","contentUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/05\/alternative-authentication-icon-bbdbd892ed1d6b20a66285b8a62f554ce73814bf_96.webp","width":96,"height":96},{"@type":"BreadcrumbList","@id":"https:\/\/vpesports.com\/minecraft\/mods\/alternative-authentication\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/vpesports.com\/minecraft\/"},{"@type":"ListItem","position":2,"name":"Mods","item":"https:\/\/vpesports.com\/minecraft\/mods\/"},{"@type":"ListItem","position":3,"name":"Alternative Authentication"}]},{"@type":"WebSite","@id":"https:\/\/vpesports.com\/minecraft\/#website","url":"https:\/\/vpesports.com\/minecraft\/","name":"Minecraft","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/vpesports.com\/minecraft\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"}]}},"_links":{"self":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod\/12636","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod"}],"about":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/types\/mod"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/media\/12637"}],"wp:attachment":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/media?parent=12636"}],"wp:term":[{"taxonomy":"mod_category","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_category?post=12636"},{"taxonomy":"mod_loader","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_loader?post=12636"},{"taxonomy":"minecraft_version","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/minecraft_version?post=12636"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}