I recently decided to make a system that allows players to access their roblox account settings in my game, however I ran into a lot of difficulties.
-
What do you want to achieve?
I want to make system that allows player to control their account in my game using roblox auth api -
What is the issue?
The problem is that in order for the player to gain access to his account, he needs to pass a captcha. This includes CaptchaToken and CaptchaID -
What solutions have you tried so far?
I read several articles on the devforum who encountered the same problem, but 70% of these articles were about the fact that they either need to try to log in via a cookie, or that it is not possible at all. The question remains, why is the Roblox Authentication API needed if it is impossible to use it without a captcha?
I will be grateful to everyone who will assist in solving this problem. Because I’ve been trying to find a solution for almost two months now.
This is body request you should include in your HTTP request so you can access to account, i am done with all of these except captchaId,captchaToken and blob.
{
"ctype": 0,
"cvalue": "string",
"password": "string",
"userId": 0,
"securityQuestionSessionId": "string",
"securityQuestionRedemptionToken": "string",
"secureAuthenticationIntent": {
"clientPublicKey": "string",
"clientEpochTimestamp": 0,
"saiSignature": "string",
"serverNonce": "string"
},
"accountBlob": "string",
"captchaId": "string",
"captchaToken": "string",
"captchaProvider": "string",
"challengeId": "string"
}
I will be very grateful if someone could help me. Thanks!