Skip to content

removeGJFriend20.php

Removes someone from a user's friend list

Parameters

ParameterExplanationRequired
accountIDThe accountID of the user removing the friendYes
gjp2The GJP2 of the user removing the friendYes
targetAccountIDThe accountID of the user being removedYes
secretCommon Secret: Wmfd2893gb7Yes
gameVersion21
binaryVersion35
gdw0

Response

Example

Python

py
import requests

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

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

Response

py
1