I have a little problem. I just want to extract the data from this website: https://api.nasdaq.com/api/calendar/splits?date=20200821
I've created a script but gives me that error: [c#] The request was aborted: Could not create SSL/TLS secure channel
WebClient client = new WebClient();
string downloadString = client.DownloadString("https://api.nasdaq.com/api/calendar/splits?date=20200821");
MessageBox.Show(downloadString);
What can I do?