英文:
bypass funcaptcha on twitter
问题
我在尝试使用Selenium绕过Twitter页面上的Arkoselabs Funcaptcha时遇到了问题。
我无法提交令牌,因为没有提交按钮。
当我尝试粘贴令牌并随机点击图片时,我会收到错误的答案错误。
我还尝试通过获取验证码图片和说明,然后请求类似于2captcha的服务并点击图片来解决验证码问题。以前可以正常工作,但现在出现了带有箭头的新类型验证码。当我做相同的操作时,我只会从2captcha得到错误的答案。
你知道我应该怎么做吗?
英文:
I have a problem with bypass Arkoselabs Funcaptcha with selenium on Twitter page.
I cant submit token because there is not any submit button.
When I try to paste token and just click random pictures I get wrong answer error.
I also tried to solve captchas by getting captcha picture and instructions, request something like 2captcha and click on images. It worked before, but now there is new type of captcha with arrows. When I did the same things I just get wrong answer from 2captcha.
Do you know what should I do?
答案1
得分: 0
var captchaToken = "3084f4a302b176cd7.96368058|r=ap-southeast-1|guitextcolor=%23FDD531|......";
((IJavaScriptExecutor)chrome).ExecuteScript("parent.postMessage(JSON.stringify({eventId:'challenge-complete',payload:{sessionToken:'" + captchaToken + "'}}),'*');");
英文:
c# code. Similar to this in Python
var captchaToken = "3084f4a302b176cd7.96368058|r=ap-southeast-1|guitextcolor=%23FDD531|......";
((IJavaScriptExecutor)chrome).ExecuteScript("parent.postMessage(JSON.stringify({eventId:'challenge-complete',payload:{sessionToken:'" + captchaToken + "'}}),'*')");
</details>
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论