PHPFixing
  • Privacy Policy
  • TOS
  • Ask Question
  • Contact Us
  • Home
  • PHP
  • Programming
  • SQL Injection
  • Web3.0

Monday, October 17, 2022

[FIXED] How to get access token via rest template call for docusign in springboot app?

 October 17, 2022     docusignapi, jwt, oauth     No comments   

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)
  • Share This:  
  •  Facebook
  •  Twitter
  •  Stumble
  •  Digg
Newer Post Older Post Home

0 Comments:

Post a Comment

Note: Only a member of this blog may post a comment.

Total Pageviews

Featured Post

Why Learn PHP Programming

Why Learn PHP Programming A widely-used open source scripting language PHP is one of the most popular programming languages in the world. It...

Subscribe To

Posts
Atom
Posts
Comments
Atom
Comments

Copyright © PHPFixing