Мне нужна помощь для загрузки данных с сайта.
Я знаю, что не так в моем коде, я вижу много подсказок, но не могу решить
Я пыталсяДоступ к данным сайта для получения экономической информации календаря,
Вот мой код:
namespace Adquire_dados
{
class Program
{
private static object webRequest;
static void Main(string[] args)
{
GetRequest("https://br.investing.com/economic-calendar/");
Console.ReadLine();
}
async static void GetRequest(string url)
{
using (HttpClient client = new HttpClient())
{
CookieContainer cookies = new CookieContainer();
HttpClient httpClient = new HttpClient();
HttpRequestMessage requestMessage = new HttpRequestMessage(HttpMethod.Get, url);
using (HttpResponseMessage httpResponse = await client.GetAsync(url))
{
using (HttpContent content = httpResponse.Content)
{
string mycontent = await content.ReadAsStringAsync();
Console.WriteLine(mycontent);
}
}
}
}
}
}
И результат, который у меня есть:
<html>
<head><title>403 Forbidden</title></head>
<body bgcolor="white">
<center><h1>403 Forbidden</h1></center>
<hr><center>nginx/1.14.0</center>
</body>
</html>
Спасибо за любыепомогите !!!