Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

WebClient DownloadString not returning anything

I want to get the source code from a Search query of Pirate Bay, I have this in my code but it doesn't return anything:

WebClient webpage = new WebClient();
string source=  webpage.DownloadString("http://thepiratebay.sx/search/documentary/0/99/0");
like image 494
Marcelo Cantú Avatar asked Oct 24 '13 22:10

Marcelo Cantú


1 Answers

Here's a quick test:

xaml:

<Label Content="{Binding ElementName=window_name, Path=SourceTest}"></Label>
<Label Content="{Binding ElementName=window_name, Path=SourceTest2}"></Label>

Code:

string source_url = "http://thepiratebay.sx/search/documentary";

WebClient webpage = new WebClient();
SourceTest = webpage.DownloadString(source_url);
if (SourceTest == "")
SourceTest = "stream was empty.";


source_url = "http://www.google.com";

webpage = new WebClient();
SourceTest2 = webpage.DownloadString(source_url);
if (SourceTest2 == "")
    SourceTest2 = "stream was empty.";

Your URL will return an empty string, Google on the other side, will give you the source you're looking for.

Edit : As I assumed, you need to identify like a web browser. This works with your query:

string source_url = "http://thepiratebay.sx/search/documentary/0/99/0";

using (var webpage = new WebClient())
{
    webpage.Headers[HttpRequestHeader.UserAgent] = "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.2 (KHTML, like Gecko) Chrome/15.0.874.121 Safari/535.2";
    SourceTest = webpage.DownloadString(source_url);
}
like image 95
Noctis Avatar answered Oct 28 '22 17:10

Noctis