Youtube Captcha

plajndek

Newbie
Joined
Jun 20, 2012
Messages
44
Reaction score
11
Just started with c# few days ago and I'm making nice progress.I'm building a bot for youtube, nothing fancy just few features for my own use. Using httpwebrequests in c# and got stuck with captchas.

Once the captcha get in way I get this xml

<?xml version="1.0" encoding="utf-8"?><root><show_feed_privacy_dialog><![CDATA[False]]></show_feed_privacy_dialog><return_code><![CDATA[0]]></return_code><str_code><![CDATA[INLINE_CAPTCHA]]></str_code><countdown_timer><![CDATA[None]]></countdown_timer><time_created><![CDATA[0]]></time_created></root>

I have no idea what to do with that, I checked deathbycaptcha API (have credits there) and still not sure how to parse this and send to decaptcha services :S.

If someone could give me a code snippet or where to search for a solution, I would appreciate that.

And yea, I'm getting this while submitting comments in a row from same account.
 
You have to parse out the Image link, download it then send the Data bytes via the API.
 
Back
Top