Skip to content

getAccountURL.php

Gets the URL for the data server.

Parameters

ParameterExplanationRequired
accountIDThe player's account ID (not to be confused with user ID). Used for authorizationYes
typeUsed to decide which endpoint is used after the data server is found. 1 = backup data, 2 = sync dataYes
secretCommon Secret: Wmfd2893gb7Yes

Response

Usually https://www.robtopgames.org. However, without a valid accountID and at type 2, https://www.robtopgames.net is returned instead

Example

Python

py
import requests

data = {
        "accountID": 71,
        "type": 2,
        "secret": "Wmfd2893gb7"
}

req = requests.post("https://www.boomlings.com/database/getAccountURL.php", data=data)
print(req.text)

Response

py
https://www.robtopgames.net