Issue
I am new to the Docusign integration in springboot gradle application. I am trying to get access token in spring boot app using Rest template but there is no way we do that as per their docs and all. We can only get access token by generating URI using integration key and other things and the we have to copy that uri and paste it to the browser to get code token which we can use to then get JWT access token through API call.
Can we not create JWT access token through rest API calls in application only, please I need all your here...
Thank you in advance!!!
Solution
Auth Code Grant requires a browser and user interaction (log in)
JWT authentication does not and you can use this to have your app generate an access token without the user having to open a browser.
However, a one-time consent is required for JWT as well and you can do that manually once and no need to worry about this again.
I would strongly suggest to use the Java quickstart, because not only it gives you working code, it configures everything for you automatically.
Answered By - Inbar Gazit Answer Checked By - Gilberto Lyons (PHPFixing Admin)
0 Comments:
Post a Comment
Note: Only a member of this blog may post a comment.