Register
Mimiland and games developed on the Mimiland platform always require a single account. Mimiland allows the use of third-party authentication for accounts
AuthenType
Method
Register with Google
POST /v1/auth/register HTTP/1.1
Host: dev.api.mimiland.io
Content-Type: application/json
mm-client-id: mml
Content-Length: 82
{
"AuthenType":5,
"AllowPubSub":false,
"Redirect":"mmlcity://authcallback"
}const myHeaders = new Headers();
myHeaders.append("Content-Type", "application/json");
myHeaders.append("mm-client-id", "mml");
const raw = JSON.stringify({
"AuthenType": 5,
"AllowPubSub": false,
"Redirect": "mmlcity://authcallback"
});
const requestOptions = {
method: "POST",
headers: myHeaders,
body: raw,
redirect: "follow"
};
fetch("https://dev.api.mimiland.io/v1/auth/register", requestOptions)
.then((response) => response.text())
.then((result) => console.log(result))
.catch((error) => console.error(error));Key
Required
Type
Description

Callback For App Check
Key
Required
Type
Description
Register With Email
Key
Required
Type
Description
Require Auth Code
Key
Type
Description
Verify Auth Code
Field
Required
Type
Description
Register With Apple ID
Feild
Type
Description
Callback For App Check
Register As Guest
Last updated