We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have been unable to get the client to work initially, because every call to "test()" came back with "INVALID". The cause turned out to be this:
{ "code": "CERT_HAS_EXPIRED" } Expired: Tuesday, 30 April 2019 at 05:56:02 British Summer Time
A temporary workaround is to defeat server certificate checking in the client by inserting the following line just before the call to test():
process.env["NODE_TLS_REJECT_UNAUTHORIZED"] = 0;
Obviously not to be recommended!
The text was updated successfully, but these errors were encountered:
@immo-huneke-zuhlke Thanks for the heads up. I will get this fixed pronto.
Sorry, something went wrong.
No branches or pull requests
I have been unable to get the client to work initially, because every call to "test()" came back with "INVALID". The cause turned out to be this:
{
"code": "CERT_HAS_EXPIRED"
}
Expired: Tuesday, 30 April 2019 at 05:56:02 British Summer Time
A temporary workaround is to defeat server certificate checking in the client by inserting the following line just before the call to test():
process.env["NODE_TLS_REJECT_UNAUTHORIZED"] = 0;
Obviously not to be recommended!
The text was updated successfully, but these errors were encountered: