You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When trying to access Lobid API via Node.js (in my case through axios, but also reproducible with fetch), it throws an UNABLE_TO_VERIFY_LEAF_SIGNATURE error. As far as I understand from my research, this is a server configuration error where "the server is, incorrectly, not returning the intermediate certificates" (see nodejs/node#33705 (comment)). This is not an issue when the API is used in the browser as browser vendors include the relevant SSL Root CAs.
Easy example (requires Node.js 18 as it has native fetch):
Thx @stefandesu for the issue:
we had a new chain.txt for SSL certificates for an other domain, but didn't merge that chain.txt with the old one.
Merged it now so it should work again.
Sorry for that.
When trying to access Lobid API via Node.js (in my case through axios, but also reproducible with
fetch
), it throws anUNABLE_TO_VERIFY_LEAF_SIGNATURE
error. As far as I understand from my research, this is a server configuration error where "the server is, incorrectly, not returning the intermediate certificates" (see nodejs/node#33705 (comment)). This is not an issue when the API is used in the browser as browser vendors include the relevant SSL Root CAs.Easy example (requires Node.js 18 as it has native
fetch
):The text was updated successfully, but these errors were encountered: