Skip to content

likeGJItem211.php

Likes a level, comment, etc.

Parameters

ParameterExplanationRequired
secretCommon Secret: Wmfd2893gb7Yes
itemIDThe ID of the level, comment, or account commentYes
type1 for level, 2 for level comment, 3 for account comment, 4 for listYes
gameVersion22
binaryVersion42
gdw0
accountIDThe liking/disliking person's account ID
gjp2The liking/disliking person's GJP2
udidThe liking/disliking person's udid
uuidThe liking/disliking person's uuid
like0 is dislike, 1 is like. Not sure what it defaults to if left out, but it can be left out.
chkSee here

Response

Always returns 1, regardless of whether the item was liked/disliked or not.

Example

Python

py
import requests

data = {
    "secret": "Wmfd2893gb7",
	"itemID": 62687277,
	"type": 1
}

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

Response

py
1