Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Continue API #83

Open
36fx opened this issue Nov 8, 2023 · 1 comment
Open

Continue API #83

36fx opened this issue Nov 8, 2023 · 1 comment

Comments

@36fx
Copy link

36fx commented Nov 8, 2023

500 server internal error running from base code on roblox test (only working with suppressed captchas)

https://apis.roblox.com/challenge/v1/continue

@36fx 36fx changed the title Continue Continue API Nov 8, 2023
@sv-du
Copy link

sv-du commented Nov 23, 2023

I'm also getting this error, my code is below

        let continueBody = {
            challengeId: rblxChallengeId,
            challengeMetadata: JSON.stringify({
                "unifiedCaptchaId": rblxChallengeMetadata.unifiedCaptchaId,
                "captchaToken": captchaToken,
                "actionType": "Login"
            }),
            challengeType: "captcha"
        }
        res = await request({
            url: "https://apis.roblox.com/challenge/v1/continue",
            method: "POST",
            headers: {
                "Accept": "application/json, text/plain, */*",
                "Accept-Encoding": "gzip, deflate, br",
                "Accept-Language": "en-US,en;q=0.5",
                "Cache-Control": "no-cache",
                "Connection": "keep-alive",
                "Content-Length": JSON.stringify(continueBody).length,
                "Content-Type": "application/json;charset=utf-8",
                "DNT": 1,
                "Host": "apis.roblox.com",
                "Origin": "https://www.roblox.com",
                "Pragma": "no-cache",
                "Referer": "https://www.roblox.com/",
                "Sec-Fetch-Dest": "empty",
                "Sec-Fetch-Mode": "cors",
                "Sec-Fetch-Site": "same-site",
                "Sec-GPC": 1,
                "TE": "trailers",
                "User-Agent": UA,
                "X-CSRF-TOKEN": csrfToken
            },
            body: continueBody,
            robloxRequest: false
        });

Based on other issues in this repo, notably #85 and #87, it seems like Arkose changed something and now this module needs to update based on what Arkose changed

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants