We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 76ae34c commit 8368dbaCopy full SHA for 8368dba
1 file changed
app/docusign/ds_client.py
@@ -104,9 +104,9 @@ def _jwt_auth(cls):
104
user_id=DS_JWT["ds_impersonated_user_id"],
105
oauth_host_name=DS_JWT["authorization_server"],
106
private_key_bytes=private_key,
107
- expires_in=3600,
+ expires_in=4000,
108
scopes=use_scopes
109
- )
+ )
110
return redirect(url_for("ds.ds_callback"))
111
112
except ApiException as err:
@@ -122,6 +122,9 @@ def _jwt_auth(cls):
122
else:
123
process_error(err)
124
125
+ return redirect(url_for("ds.ds_callback"))
126
+
127
128
129
@classmethod
130
def destroy(cls):
0 commit comments