-
Notifications
You must be signed in to change notification settings - Fork 44
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
Comments
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
500 server internal error running from base code on roblox test (only working with suppressed captchas)
https://apis.roblox.com/challenge/v1/continue
The text was updated successfully, but these errors were encountered: