Reverse engineered library for the german McDonald's API in Java
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
dependencies {
implementation 'com.github.JicuNull:McReverse:main-SNAPSHOT'
}
Find more options here: Jitpack
McClient
connects to the McDonald's backend server and is used for all interactions with the server.
README.md
McClient client = new McClient();
You can log in with an existing account by calling login(email, password)
, where the default deviceId (75408e58622a88c6) is used.
NOTE A deviceId must first be confirmed before a login with it is successful.
McClient client = new McClient();
client.login("test@example.org", "123456");
or using a custom deviceId
McClient client = new McClient();
client.login("test@example.org", "123456", "deviceId");
This code is in no way affiliated with, authorized, maintained, sponsored or endorsed by McDonald’s or any of its affiliates or subsidiaries. This is an independent and unofficial software. Use at your own risk.