Pular para o conteúdo

LoginGJAccount

Este conteúdo não está disponível em sua língua ainda.

This endpoint is used to log into a players Geometry Dash account.

Parameters

ParameterExplanationOptional
udidThe user’s Universal Unique IdentifierFalse
userNameThe username for the account the player is trying to log intoFalse
passwordThe plaintext password for the account the player is trying to log intoFalse
sIDThe player’s steam IDTrue
secretAccount Secret: Wmfv3899gc9False

Note the sID parameter is only sent to the servers if the player is logging into their account from the steam release of Geometry Dash. From what has been observed, it has not been utilised.

Responses

A successful login attempt will return the players accountID and player ID seperated by a ,

# response = 71,16
accountID, playerID = response.split(",")

If the request was not successful, there are 7 different error codes that can be returned

Error CodeMeaning
-1Generic Error
-8If the user’s password is less than 6 characters long
-9If the user’s Username is less than 3 characters long
-11If the user’s login credentials are incorrect
-12If the user’s account is disabled
-13If the account the user is trying to log into has a different steam ID to to that account (Unused)