getAccountURL.php
Gets the URL for the data server.
Parameters
| Parameter | Explanation | Required |
|---|---|---|
accountID | Any valid account ID | Yes |
type | used to decide which endpoint is used after the data server is found - 1 = backup data/ 2 = sync data | Yes |
secret | Common Secret: Wmfd2893gb7 | Yes |
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