-
Notifications
You must be signed in to change notification settings - Fork 13
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
[SUGGESTION] Use requests. #9
Comments
I'm a little confused about your issue If you propose to use pure requests instead of selenium, it is impossible because of reddit protection. |
I know this might sound like a lot, but Reddit's security measures are quite weak. They only check headers, and if you're using Chrome with TLS, they also inspect cookies and a hidden csrf_token on the page's html (/register). The most challenging part is solving the reCAPTCHA. nothing other then that |
I would say just give it a try. |
Also im not hating or anything your project is good but using requests would make it much faster and efficient. |
That's exactly what I'm talking about First of all, in order to invoke captcha at all, you can't just make a request to some URL. That query is generated by a ton of JS loaded by google, which needs to be interpreted, not parsed. Second, the same applies to the captcha page itself. At least I haven't found any opensource solution for solving captchas this way. So even if it is possible to do it, I won't be able to do it, I've already tried in other projects |
You could just solve the recaptcha alone and get the captcha key that would be faster |
I have made accounts creator completely using HTTPx lib |
@ZakariaMQ How did you do it? Let me guess, just by skipping the captcha solving step? Because if so, it's still unclear how to implement registration only on http requests |
yeah, I did it without skipping the captcha. It got solved using the 2Captcha service
now I just need to figure out why accounts get suspended even if all headers are correct and so on |
httpx is detected |
I tried both httpx and requests but same results |
I have created this account generator using only python requests, I needed to use captcha solving servuce |
code
|
this is just a captcha solver which I made in 20 lines of code the important thing is to make accounts live and not get banned after a few hours |
How about trying Niquests instead? |
use requests
The text was updated successfully, but these errors were encountered: