M
M
molodoy_arsen2021-06-13 23:52:56
Python
molodoy_arsen, 2021-06-13 23:52:56

How to bypass captcha when parsing or prevent it from appearing?

Began to actively study parsing. All the ways to bypass captchas on the site are very interesting. I heard if the services that date these captchas to people, 1000 captchas cost an acceptable $ 0.6 on them, but how, for example, to integrate them into the code. I will be very glad to each comment. Parsing was very good. Scab sites just for themselves. I like to figure out ways to bypass protection. Help whoever can)))

Answer the question

In order to leave comments, you need to log in

1 answer(s)
S
soremix, 2021-06-13
@molodoy_arsen

how to integrate them into code

Register in the service you like, the service provides its API for work, perhaps immediately and there is a ready-made library. Read documentation, see examples. Basically, the work looks like this - send a request to the site you need, $ 0.6 sounds cheap to Google, so let's assume that this is a regular picture, so in this case, parse the link to the captcha image. In accordance with the documentation, make a request to the server for solving captcha, the request body will already include a link to the image (either sitekey, in the case of Google, or any other data for a specific captcha), specify the type of captcha, proxy usage, etc. Send a request to the service, it will return some kind of task number. Next, send a request to the endpoint with the results of the solution and pass the task number to it. There, the service will return some status, and if the decision is ready - will send the answer. Further, this answer will simply need to be invested in the right place of your requests to the site. In general, a spherical captcha solving service works like this.
It is better to register on the service and look at the API dock, everything will become clear

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question