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
accountIDThe player's account ID (not to be confused with user ID). Used for authorizationYes
gjp2The player's account password, encoded with GJP2. Used for authorizationYes
udidThe player's UDID (Unique Device Identifier). Used to identify unregistered usersYes
uuidIn modern versions, this is sent as the user ID. See the previous format hereYes
chkSee hereYes
gameVersionA number representing the game's version. The current value is 22 for 2.2
binaryVersionA number representing the game's small version. The current value is 47 for 2.2081 on PC and 48 for 2.208 on mobile
dvsA number added in 2.208 representing the device the player is using. Corresponds to the Cocos2d CC_TARGET_PLATFORM macro: 1 for iOS, 2 for Android, 3 for Windows, 8 for macOS

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