How to get 301 views in 1 minutes (right after upload)

raptors

Newbie
Joined
Jul 23, 2013
Messages
13
Reaction score
1
hey, i've seen this happen before (with my competitors), and they have a method where their upload would say "uploaded 10 seconds ago" but it'll have 301 views (not real i assume). it helps them appear in the search before me.

Does anyone know the method to get just 300 views first minute. no more, and quick.
 
Those are not real views. You will see on the site statistics that the real number is very low. Their is a glitch sometimes with Youtube right after you upload a movie and keep refreshing the page and watching the video that it will attribute these to "Views" but the analytics will show it is not like this at all.
 
Those are not real views. You will see on the site statistics that the real number is very low. Their is a glitch sometimes with Youtube right after you upload a movie and keep refreshing the page and watching the video that it will attribute these to "Views" but the analytics will show it is not like this at all.



i don't need them to be real.

and its not the "refresh" method. its literally 300 views i n 10 seconds
 
i don't need them to be real.

and its not the "refresh" method. its literally 300 views i n 10 seconds

yes, the "glitch" being you keep refreshing and giving yourself views. that is not what i asked. but thanks
 
Okay, here is a step-by-step on how you can make your very own 300 views in 10 seconds bot;

You will need: Visual Studios.

1. Create a new C# project,
2. Create a button and a textbox
3. Double click the button and paste the follow between the parenthesis;
Code:
for (var i = 0; i < 500; i++)            {
                var request = (HttpWebRequest)WebRequest.Create("httpCOLON//wwwDOTyoutubeDOTcom/get_video?video_id=" + textBox1.Text + "&el=detailpage&fmt=34&ptk=youtube_none&t=vjVQa1PpcFO6aa_WLq5JSahLaNpPGweT-XkMD9_yZmU=&cpn=Wc5sjFKluDQLGeDa&asv=3&noflv=1"); //Creating a new request
                request.Referer = ""; //Here we are setting various values that HttpWebRequest needs
                request.Method = "GET";
                request.UserAgent = "";
                request.Timeout = 10000;
                request.ServicePoint.ConnectionLimit = 100;


                try
                {
                    var responce = request.GetResponse(); //Recieving streamdata
                    var streamdata = responce.GetResponseStream();


                    if (streamdata != null) streamdata.Close(); //Closing stream
                    responce.Close();
                }
                catch
                {
                    MessageBox.Show("You dun goofed");
                    break;
                }
            }

4. Replace the DOTandCOLON parts in the url we're requesting too,
5. Finally, run your application and enter your video ID and goooo!

Have fun!
 
Number of ways, First and the most probably is what TheHamLord posted.
Just run that on your video and you'll 301 it. (I'm not sure if you got what everyone was saying. YouTube has a funny glitch thing that prevents new videos going over 301 views)


Secondly the account could have a load of subscribers, upload a video that immediately informs every subscriber by email. Most small size YouTube channels will do this.

Finally you can set you're video to upload privately get the URL for the video. Set a campaign on every social exchange site you can find. Make it public and click go on all the campaigns. Or just buy the views from the BST section and schedule them well.

-Also has anyone else noticed how common the 301 views - Pending Views message is becoming?
 
That's what I've done before, simply upload the video as unlisted and unleash your views. Then you click Make Public and it will say uploaded xx seconds ago. To the OP, it isn't rocket science.

Number of ways, First and the most probably is what TheHamLord posted.
Just run that on your video and you'll 301 it. (I'm not sure if you got what everyone was saying. YouTube has a funny glitch thing that prevents new videos going over 301 views)


Secondly the account could have a load of subscribers, upload a video that immediately informs every subscriber by email. Most small size YouTube channels will do this.

Finally you can set you're video to upload privately get the URL for the video. Set a campaign on every social exchange site you can find. Make it public and click go on all the campaigns. Or just buy the views from the BST section and schedule them well.

-Also has anyone else noticed how common the 301 views - Pending Views message is becoming?
 
Okay, here is a step-by-step on how you can make your very own 300 views in 10 seconds bot;

You will need: Visual Studios.

1. Create a new C# project,
2. Create a button and a textbox
3. Double click the button and paste the follow between the parenthesis;
Code:
for (var i = 0; i < 500; i++)            {
                var request = (HttpWebRequest)WebRequest.Create("httpCOLON//wwwDOTyoutubeDOTcom/get_video?video_id=" + textBox1.Text + "&el=detailpage&fmt=34&ptk=youtube_none&t=vjVQa1PpcFO6aa_WLq5JSahLaNpPGweT-XkMD9_yZmU=&cpn=Wc5sjFKluDQLGeDa&asv=3&noflv=1"); //Creating a new request
                request.Referer = ""; //Here we are setting various values that HttpWebRequest needs
                request.Method = "GET";
                request.UserAgent = "";
                request.Timeout = 10000;
                request.ServicePoint.ConnectionLimit = 100;


                try
                {
                    var responce = request.GetResponse(); //Recieving streamdata
                    var streamdata = responce.GetResponseStream();


                    if (streamdata != null) streamdata.Close(); //Closing stream
                    responce.Close();
                }
                catch
                {
                    MessageBox.Show("You dun goofed");
                    break;
                }
            }

4. Replace the DOTandCOLON parts in the url we're requesting too,
5. Finally, run your application and enter your video ID and goooo!

Have fun!

Great one bro :)
Really very usefull.
 
Okay, here is a step-by-step on how you can make your very own 300 views in 10 seconds bot;

You will need: Visual Studios.

1. Create a new C# project,
2. Create a button and a textbox
3. Double click the button and paste the follow between the parenthesis;
Code:
for (var i = 0; i < 500; i++)            {
                var request = (HttpWebRequest)WebRequest.Create("httpCOLON//wwwDOTyoutubeDOTcom/get_video?video_id=" + textBox1.Text + "&el=detailpage&fmt=34&ptk=youtube_none&t=vjVQa1PpcFO6aa_WLq5JSahLaNpPGweT-XkMD9_yZmU=&cpn=Wc5sjFKluDQLGeDa&asv=3&noflv=1"); //Creating a new request
                request.Referer = ""; //Here we are setting various values that HttpWebRequest needs
                request.Method = "GET";
                request.UserAgent = "";
                request.Timeout = 10000;
                request.ServicePoint.ConnectionLimit = 100;


                try
                {
                    var responce = request.GetResponse(); //Recieving streamdata
                    var streamdata = responce.GetResponseStream();


                    if (streamdata != null) streamdata.Close(); //Closing stream
                    responce.Close();
                }
                catch
                {
                    MessageBox.Show("You dun goofed");
                    break;
                }
            }

4. Replace the DOTandCOLON parts in the url we're requesting too,
5. Finally, run your application and enter your video ID and goooo!

Have fun!

I like this part here:
{
MessageBox.Show("You dun goofed");
break;
}
:D
 
Okay, here is a step-by-step on how you can make your very own 300 views in 10 seconds bot;

You will need: Visual Studios.

1. Create a new C# project,
2. Create a button and a textbox
3. Double click the button and paste the follow between the parenthesis;
Code:
for (var i = 0; i < 500; i++)            {
                var request = (HttpWebRequest)WebRequest.Create("httpCOLON//wwwDOTyoutubeDOTcom/get_video?video_id=" + textBox1.Text + "&el=detailpage&fmt=34&ptk=youtube_none&t=vjVQa1PpcFO6aa_WLq5JSahLaNpPGweT-XkMD9_yZmU=&cpn=Wc5sjFKluDQLGeDa&asv=3&noflv=1"); //Creating a new request
                request.Referer = ""; //Here we are setting various values that HttpWebRequest needs
                request.Method = "GET";
                request.UserAgent = "";
                request.Timeout = 10000;
                request.ServicePoint.ConnectionLimit = 100;


                try
                {
                    var responce = request.GetResponse(); //Recieving streamdata
                    var streamdata = responce.GetResponseStream();


                    if (streamdata != null) streamdata.Close(); //Closing stream
                    responce.Close();
                }
                catch
                {
                    MessageBox.Show("You dun goofed");
                    break;
                }
            }

4. Replace the DOTandCOLON parts in the url we're requesting too,
5. Finally, run your application and enter your video ID and goooo!

Have fun!


Wow... When you wrote this up, did you really think "man, I'm clever and funny" ... Cause that was pretty lame. Just terrible
 
Wow... When you wrote this up, did you really think "man, I'm clever and funny" ... Cause that was pretty lame. Just terrible

What? Actually, right here I gave you EXACTLY what you where asking for, don't be so un-grateful you a$s-clown, now I know why you where banned!
 
can anyone send me by pm this program created by using the step-by-step from above? i got errors.
 
Okay, here is a step-by-step on how you can make your very own 300 views in 10 seconds bot;

You will need: Visual Studios.

1. Create a new C# project,
2. Create a button and a textbox
3. Double click the button and paste the follow between the parenthesis;
Code:
for (var i = 0; i < 500; i++)            {
                var request = (HttpWebRequest)WebRequest.Create("httpCOLON//wwwDOTyoutubeDOTcom/get_video?video_id=" + textBox1.Text + "&el=detailpage&fmt=34&ptk=youtube_none&t=vjVQa1PpcFO6aa_WLq5JSahLaNpPGweT-XkMD9_yZmU=&cpn=Wc5sjFKluDQLGeDa&asv=3&noflv=1"); //Creating a new request
                request.Referer = ""; //Here we are setting various values that HttpWebRequest needs
                request.Method = "GET";
                request.UserAgent = "";
                request.Timeout = 10000;
                request.ServicePoint.ConnectionLimit = 100;


                try
                {
                    var responce = request.GetResponse(); //Recieving streamdata
                    var streamdata = responce.GetResponseStream();


                    if (streamdata != null) streamdata.Close(); //Closing stream
                    responce.Close();
                }
                catch
                {
                    MessageBox.Show("You dun goofed");
                    break;
                }
            }

4. Replace the DOTandCOLON parts in the url we're requesting too,
5. Finally, run your application and enter your video ID and goooo!

Have fun!


this is not working buddy and i really need this , could you help me somehow? thank you in advance.
 
Back
Top