Skip to content

rateGJStars211.php

Sends a star suggestion for a level

Parameters

ParameterExplanationRequired
secretCommon Secret: Wmfd2893gb7Yes
levelIDThe ID of the level receiving the star suggestionYes
starsThe amount of stars being suggestedYes
rs10 randomly generated characters from [A-Za-z0-9]Yes
accountIDYour account IDYes
gjp2Your password, encrypted with GJP2Yes
udidYour UDIDYes
uuidYour player ID (different from account ID)Yes
chkSee hereYes
gameVersion22
binaryVersion42
gdw0

Response

Always 1 if the parameters secret, levelID and stars are specified. chk, udid, uuid, rs, accountID and gjp2 are technically not required but the star rating will not go through if these parameters aren't specified

Example

Python

py
import requests

data = {
    "secret": "Wmfd2893gb7",
    "levelID": 15254724,
    "stars": 3
}

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

Response

py
1