Building out the iframe and charge cardToken on the sandbox currently in VB.NET. iframe works, cardToken returned and when I try and POST the charge and read the response I get:
The request was aborted: Could not create SSL/TLS secure channel.
I've seen before and is usually fixed by setting the TLS to TLS12 with:
System.Net.ServicePointManager.SecurityProtocol=System.Net.SecurityProtocolType.Tls12
But that has not helped. So my question us: what TLS settings should I be using? TLS13?
I have however managed to take the cardToken and POST the charge via postman. So I know my JSON/cardToekn/headers are good. It's just the handshake isn't working and I cannot see why.