Multiple YouTube accounts at once (multi-threading)

CenTu

Registered Member
Joined
Oct 5, 2011
Messages
98
Reaction score
19
Greetings !


A friend of mine is working at a youtube bot that would have the normal features like sending messages and sharing videos, adding friends etc.


Our question is can we log in multiple accounts at once on youtube ? Until now we couldn't find a solution, we tried to disable cookies but no effect.


Yes we are talking about multi-threading, we want to use multiple youtube accounts with private proxies at once. The bot is made in vb.net .


Thanks !
 
If you disabled cookies then how it will work after login because cookies store the information of login not password just like session

about your Question yes you can log in multiple acc. use More HTTPWebRequest 1 for 1 acc. and the do a loop with your Username & Password which will login into acc. using 1 Request for 1 acc. with 1 Proxy ..
 
Try webrequest for log-in/log-out type issues. It's just a matter of sending the POST to the site and your logged in. Setup 1000 webrequest one after another and you have it done in about 2 minutes tops.
 
If you multithread it correctly then there is no reason for it to have a problem. Each thread has to have its own cookies and webrequest and that is about it. Is the single thread bot working correctly?

Sent from my Milestone using Tapatalk 2
 
Why would this be problematic? I don't see the issue here - just use multiple threads where each has their own cookiecontainer (obviously).
 
Back
Top