You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently per Microsoft deprecating TLS connections Yamster cant login to a tenant that only accepts TLS 1 as connection.
The recommended solution is to set the security protocol with:
Currently per Microsoft deprecating TLS connections Yamster cant login to a tenant that only accepts TLS 1 as connection.
The recommended solution is to set the security protocol with:
ServicePointManager.SecurityProtocol = SecurityProtocolType.Ssl3 | SecurityProtocolType.Tls12 | SecurityProtocolType.Tls11 | SecurityProtocolType.Tls;
on which method should this protocol be set?
The text was updated successfully, but these errors were encountered: