rateGJStars211.php
Sends a star suggestion for a level
Parameters
| Parameter | Explanation | Required |
|---|---|---|
secret | Common Secret: Wmfd2893gb7 | Yes |
levelID | The ID of the level receiving the star suggestion | Yes |
stars | The amount of stars being suggested | Yes |
rs | 10 randomly generated characters from [A-Za-z0-9] | Yes |
accountID | The player's account ID (not to be confused with user ID). Used for authorization | Yes |
gjp2 | The player's account password, encoded with GJP2. Used for authorization | Yes |
udid | The player's UDID (Unique Device Identifier). Used to identify unregistered users | Yes |
uuid | In modern versions, this is sent as the user ID. See the previous format here | Yes |
chk | See here | Yes |
gameVersion | A number representing the game's version. The current value is 22 for 2.2 | |
binaryVersion | A number representing the game's small version. The current value is 47 for 2.2081 on PC and 48 for 2.208 on mobile | |
dvs | A 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