I'm making a cURL system call, but on some systems it throws the error below. I am trying to solve it by adding --ssl-no-revoke to the call which I assume might work. Question is, will that disable revocation checking in this call only or permanently disable it on the computer?
The call:
curl https://api.gumroad.com/v2/licenses/verify -d "product_permalink=xxxxxx" -d "license_key=xxxxxxxxxx" -X POST --ssl-no-revoke
The error:
curl: (35) schannel: next InitializeSecurityContext failed: Unknown error (0x80092012) - The revocation function was unable to check revocation for the certificate.
User contributions licensed under CC BY-SA 3.0