Home > Mobile >  Docusign error: "unable to get local issuer certificate"
Docusign error: "unable to get local issuer certificate"

Time:06-13

We're using the Docusign RestAPI (PHP SDK) from our app and it works great. Authentication mode is JWT. I want to use all the code I've written on a different subdomain, but I get this error:

API call to https://account.docusign.com/oauth/token failed: SSL certificate problem: unable to get local issuer certificate

Both domains, my-domain.com and new.my-domain.com have SSL certs installed. What do I do now? What have I missed?

CodePudding user response:

The enter image description here

CodePudding user response:

Do you have the standard set of trusted root certs installed in PHP?

This article may help you.

  • Related