0

I am trying to bypass funcaptcha throug twocaptcha using python. But could not

here is my code also

solver = CaptchaSolver(CaptchaSolvingService.TWOCAPTCHA, api_key='')
solver.get_balance()
solver = solver.solve_funcaptcha('B7D8911C-5CC8-A9A3-35B0-554ACEE604DA','https://signup.live.com/signup')
time.sleep(90)

I am trying to bypass funcaptcha throug twocaptcha using python. But could not

here is my code also

solver = CaptchaSolver(CaptchaSolvingService.TWOCAPTCHA, api_key='')
solver.get_balance()
solver = solver.solve_funcaptcha('B7D8911C-5CC8-A9A3-35B0-554ACEE604DA','https://signup.live.com/signup')
time.sleep(90)
Eugene Astafiev
  • 47,483
  • 3
  • 24
  • 45

1 Answers1

1

You have to use the grid method to solve the captcha, the normal method of implementation does not work for outlook, nor has it for the past couple years.

Mike Heo
  • 11
  • 2