You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Since PR #2611, MCC has support for adding custom yggdrasil servers.
Because one of the best uses of this server is creating more accounts for bots, I'd like to use my custom auth server with MCC.
Setting AccountType and AuthServer to the values results in a "Network Error" on the MCC side an a 404 on the Drasl side:
AccountType = "yggdrasil"# Account type: "mojang" OR "microsoft" OR "yggdrasil". Also affects interactive login in console.Method = "mcc"# Microsoft Account sign-in method: "mcc" OR "browser". If the login always fails, please try to use the "browser" once.AuthServer = { Host = "mca.xxxxx.com", Port = 443 } # Yggdrasil authlib server domain name and port.
Since you mentioned in the README that working with bots is a primary use case for this project it'd be great if usage with MCC could be documented or if you could let me know how.
The text was updated successfully, but these errors were encountered:
I looked into MCC, and their implementation of Yggdrasil is incorrect. The request paths get prefixed with /api/yggdrasil/authserver or /api/yggdrasil/sessionserver. Blessing Skin (used by LittleSkin) structures their API like that [1], but other Yggdrasil implementations including Mojang's, Ely.by, and Drasl do not. I can try to fix MCC and file a PR, which would be straightforward unless they care about keeping backwards compatibility with the (incorrect) implementation.
And I just opened #69 to document Mineflayer, that's what I have been writing bots with. While writing that documentation, I ran into a bug that I fixed in #68, so try updating Drasl to the latest master commit if it's not working for you still.
As I wrote in #69, enforce-secure-profile=true servers will not work yet with Mineflayer due to a limitation on their end, see #67.
Since PR #2611, MCC has support for adding custom yggdrasil servers.
Because one of the best uses of this server is creating more accounts for bots, I'd like to use my custom auth server with MCC.
Setting AccountType and AuthServer to the values results in a "Network Error" on the MCC side an a 404 on the Drasl side:
Configuration:
Since you mentioned in the README that working with bots is a primary use case for this project it'd be great if usage with MCC could be documented or if you could let me know how.
The text was updated successfully, but these errors were encountered: