Skip to content

unblockGJUser20.php

Unblocks a user.

Parameters

ParameterExplanationRequired
accountIDThe unblocking person's account IDYes
gjp2The unblocking person's GJP2Yes
targetAccountIDThe account ID of the person getting unblockedYes
secretCommon Secret: Wmfd2893gb7Yes
gameVersion22
binaryVersion42
gdw0

Response

Always returns 1, regardless of if the target account exists or not.

Example

Python

py
import requests

# With this code, DevExit is unblocking RobTop

data = {
        "accountID": 173831, # DevExit's account ID
        "gjp2": "********", # This would be DevExit's password encoded with GJP2 encryption
        "targetAccountID": 71, # Robtop's account ID
        "secret": "Wmfd2893gb7"
}

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

Response

py
1