The request was aborted: Could not create SSL/TLS secure channel issue

Please help me how to solve The request was aborted: Could not create SSL/TLS secure channel
issue, i create new OKTA Account and create Token. i’m using c# language with (okta.core.dll)

Code:
string Apikey = “*******************************************”;
string ApiUrl = “https://dev-*****.oktapreview.com”;
var oktaClient = new OktaClient(Apikey, new Uri(ApiUrl));
var usersClient = oktaClient.GetUsersClient();
var CurrentUser = usersClient.Add(user);

            return CurrentUser.Id;

Please help me

Hello @Praveenvid,

This error is caused by TLS 1.2 incompatibility. We’re currently migrating all systems to an exclusive-TLS 1.2 network and all implementations calling Okta must update to accommodate for this.

Please take a look at this for more information: https://stackoverflow.com/questions/45382254/update-net-web-service-to-use-tls-1-2

Thank you,
Andrei Hava
Developer Support Team

This topic was automatically closed 24 hours after the last reply. New replies are no longer allowed.