Skip to content

deleteGJAccComment20.php

Parameters

ParameterExplanationRequired
accountIDAccount ID of the user deleting the commentYes
gjp2The GJP2 of the user deleting the commentYes
commentIDThe ID of the comment being deleted (Returned by uploadGJAccComment20)Yes
secretCommon Secret: Wmfd2893gb7Yes
gameVersion21
binaryVersion35
gdw0

Response

1 if the comment was deleted, -1 if there was an error

Example

Python

py
import requests

# With this code, DevExit is deleting his account comment with ID 1772717

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

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

Response

py
1