FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
code-examples-python/jwt_console.py at master · docusign/code-examples-python · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
docusign
/
code-examples-python
Public
Notifications
You must be signed in to change notification settings
Fork
56
Star
55
Code
Issues
1
Pull requests
1
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
code-examples-python
/
jwt_console.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
99 lines (75 loc) · 3.33 KB
Breadcrumbs
code-examples-python
/
jwt_console.py
Copy path
File metadata and controls
99 lines (75 loc) · 3.33 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
from
os
import
path
import
sys
import
subprocess
# pip install DocuSign SDK
subprocess
.
check_call
([
sys
.
executable
,
'-m'
,
'pip'
,
'install'
,
'docusign_esign'
])
from
docusign_esign
import
ApiClient
from
docusign_esign
.
client
.
api_exception
import
ApiException
from
app
.
jwt_helpers
import
get_jwt_token
,
get_private_key
from
app
.
eSignature
.
examples
.
eg002_signing_via_email
import
Eg002SigningViaEmailController
from
app
.
jwt_config
import
DS_JWT
SCOPES
=
[
"signature"
,
"impersonation"
]
def
get_consent_url
():
url_scopes
=
"+"
.
join
(
SCOPES
)
# Construct consent URL
redirect_uri
=
"https://developers.docusign.com/platform/auth/consent"
consent_url
=
f"https://
{
DS_JWT
[
'authorization_server'
]
}
/oauth/auth?response_type=code&"
\
f"scope=
{
url_scopes
}
&client_id=
{
DS_JWT
[
'ds_client_id'
]
}
&redirect_uri=
{
redirect_uri
}
"
return
consent_url
def
get_token
(
private_key
,
api_client
):
# Call request_jwt_user_token method
token_response
=
get_jwt_token
(
private_key
,
SCOPES
,
DS_JWT
[
"authorization_server"
],
DS_JWT
[
"ds_client_id"
],
DS_JWT
[
"ds_impersonated_user_id"
])
access_token
=
token_response
.
access_token
# Save API account ID
user_info
=
api_client
.
get_user_info
(
access_token
)
accounts
=
user_info
.
get_accounts
()
api_account_id
=
accounts
[
0
].
account_id
base_path
=
accounts
[
0
].
base_uri
+
"/restapi"
return
{
"access_token"
:
access_token
,
"api_account_id"
:
api_account_id
,
"base_path"
:
base_path
}
def
get_args
(
api_account_id
,
access_token
,
base_path
):
signer_email
=
input
(
"Please enter the signer's email address: "
)
signer_name
=
input
(
"Please enter the signer's name: "
)
cc_email
=
input
(
"Please enter the cc email address: "
)
cc_name
=
input
(
"Please enter the cc name: "
)
envelope_args
=
{
"signer_email"
:
signer_email
,
"signer_name"
:
signer_name
,
"cc_email"
:
cc_email
,
"cc_name"
:
cc_name
,
"status"
:
"sent"
,
}
args
=
{
"account_id"
:
api_account_id
,
"base_path"
:
base_path
,
"access_token"
:
access_token
,
"envelope_args"
:
envelope_args
}
return
args
def
run_example
(
private_key
,
api_client
):
jwt_values
=
get_token
(
private_key
,
api_client
)
args
=
get_args
(
jwt_values
[
"api_account_id"
],
jwt_values
[
"access_token"
],
jwt_values
[
"base_path"
])
envelope_id
=
Eg002SigningViaEmailController
.
worker
(
args
,
DS_JWT
[
"doc_docx"
],
DS_JWT
[
"doc_pdf"
])
print
(
"Your envelope has been sent."
)
print
(
envelope_id
)
def
main
():
api_client
=
ApiClient
()
api_client
.
set_base_path
(
DS_JWT
[
"authorization_server"
])
api_client
.
set_oauth_host_name
(
DS_JWT
[
"authorization_server"
])
private_key
=
get_private_key
(
DS_JWT
[
"private_key_file"
]).
encode
(
"ascii"
).
decode
(
"utf-8"
)
try
:
run_example
(
private_key
,
api_client
)
except
ApiException
as
err
:
body
=
err
.
body
.
decode
(
'utf8'
)
if
"consent_required"
in
body
:
consent_url
=
get_consent_url
()
print
(
"Open the following URL in your browser to grant consent to the application:"
)
print
(
consent_url
)
consent_granted
=
input
(
"Consent granted? Select one of the following:
\n
1)Yes
\n
2)No
\n
"
)
if
consent_granted
==
"1"
:
run_example
(
private_key
,
api_client
)
else
:
sys
.
exit
(
"Please grant consent"
)
main
()
Back
|
FazBrowse Home
|
New Git URL