Hey,
Im running axios call (in nodeJS) service from my local host to Monday API.
but I get - “self signed certificate in certificate chain”/
Searched the web a bit, and saw I can skip it by adding this (Only for debug purpose)
“process.env.NODE_TLS_REJECT_UNAUTHORIZED = “0”;”.
But then I get a new error: “socket hang up”.
Is there a way you can point me to do something to allow me running queries to Monday in order to be able to debug my code? Through postman, I do mange making calls, and I guess the reason is its creates some self sign certificate.
How do I do that?
Thanks for the helper!