code-examples-java icon indicating copy to clipboard operation
code-examples-java copied to clipboard

How can I call eSign API without login developer account everytime?

Open denghejun opened this issue 11 months ago • 1 comments

But everytime, when I type : https://account-d.docusign.com/oauth/auth?response_type=code&scope=signature&client_id={my_real_client_id}&redirect_uri=https://localhost:8080/callback

Docusign ask the developer account to sign in, otherwise I cannot get the auth code, so I cannot get the access token by the auth code. So it is not a one time thing, everytime, If I want to call some eSign API, I need to login the developer account everytime, why?

Image

denghejun avatar Feb 10 '25 08:02 denghejun

Use JWT instead of Auth Code Grant. You will only need to consent one time and never have to log in again. https://developers.docusign.com/platform/auth/jwt/

InbarGazit avatar Feb 10 '25 16:02 InbarGazit