Alternative to JWT grant that doesn't require API calls for authentication
Please provide an alternative to the JWT grant so my app doesn't need to make API calls to get an access token. For example, use the JWT itself as an access token.
GitHub, AWS, and others enable a static access string/key to be used for calls.

-
FABIO CHELLY commented
Could you create simple REST calls with a standard response in JSON without needing any dependancy?
We should just provide the key in the headers and be able to call your webservice with simple POST or GET calls. Your start package system requiring installing twig and docusign-eclient and oauth etc. is time-consuming at best.
All the other competitors - correction: all the other APIs in the world - are simpler than yours to integrate. Even Microsoft Azure APIs are simpler.
I have integrated Yousign in my CRM in less than 20 minutes. Nothing to install. Not even a token to generate. The key is simply put in a "Authorization: Bearer" header.
One simple POST call with parameters to send a document to sign and I get a link in return.
One other call to get to download the signed doc.Why did you need to make something so complex? KISS...
-
Rodrigo Pampin commented
This request is critical to the success of our current development. We want to create Documents and send them to requests users signature, but we don't want to explicit login. Our service is going to be automated in this regard.