Skip to content

Block User

Blocks a given user.

Endpoint

method endpoint
POST blockGJUser20.php

Parameters

name description
accountID The blocking person's account ID.
gjp The blocking person's encoded password.
targetAccountID The account ID of the person being blocked.
secret The common secret.
gameVersion? The current game version.
binaryVersion? The current binary version.
gdw? Whether the users are in Geometry Dash World.

Response

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

Example

Code

import requests

# with this code, DevExit is blocking RobTop

data = {
    "accountID": 173831,      # DevExit's account ID
    "gjp": "********",        # this would be DevExit's encoded password
    "targetAccountID": 71,    # RobTop's account ID
    "secret": "Wmfd2893gb7",  # common secret
}

response = requests.post("http://boomlings.com/database/blockGJUser20.php", data=data)

print(response.text)

Output

1