Reputation: 19
I have been using docuisgn Api to create and send template and using SOBO concept from past 1 month or so, but now suddenly I am getting error while generating access token for the Generic Account i.e "Maximum number of access tokens exceeded", I read a post regarding saving the access token & reusing it but I read that too that Access token get expired after 15 min or something. Please help on this guys. Thanks a lot :)
Upvotes: 1
Views: 1114
Reputation: 2702
Slightly two different topics in play here but with similar vernacular. From the sounds of what you built you may want to consider option 2 below.
1) OAuth2 token which does not expire, which are useful if you are building a native application for a device, or a deep integration. There is a maximum of 10 tokens and you can revoke them via the API or web app. Documentation below.
https://www.docusign.com/p/RESTAPIGuide/RESTAPIGuide.htm#OAuth2/General%20Usage%20Notes.htm
2) OAuth2 token with SAML. Used for short lived authentication approaches for your application in order to avoid using username/passwords to generate authentication tokens (since SAML is used instead). These tokens last 1 hour, no refresh of the token supported.
Upvotes: 2