I am trying to access http://www.b-maison-a-louer/rouyn-noranda/c43l1700060 however, kijiji is forcing a default location which requires user to manually set the city before allowing access to that url, I have below code that I am trying but it doesnt seem to work for the content, however it does switch it from french to english. I am not sure what other cookie I should be setting that would please kijiji to allow me to access a url directly.
public static string GetHTML(string url)
{
var client = new WebClient { Encoding = Encoding.UTF8 };
client.Headers.Add(HttpRequestHeader.Cookie, "site_preference=Vignore_out_of_country=enabled^default_area=1700060, siteLocale=en_CA, ");
return client.DownloadString(url);
}