I have a Post API call which is working fine in Postman with certificate(CRT and Key file).
While calling this api from frontend, I am getting 'HttpErrorResponse' error on browser.
Do i need to consider certificate(CRT and Key file) at frontend while making the API call? Below is the error while making http call in Angular
[Error] XMLHttpRequest cannot load <url> due to access control checks.
"error": "[ProgressEvent]",
"headers": "[ti]",
"message": "Http failure response for https://....b/files: 0 Unknown Error", "name": "HttpErrorResponse",
"ok": false,
"status": 0,
"statusText": "Unknown Error",
"url": "https://...b/files"
While checking the log from backend side
SSL_do_handshake() failed (SSL: error:14094416:SSL routines:ssl3_read_bytes:sslv3 alert certificate unknown:SSL alert number 46) while SSL handshaking, client: <IP>, server: <IP>
How to fix this issue in Angular or server side?