-
Notifications
You must be signed in to change notification settings - Fork 54
Combined launcher text changes #15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
README.md
Outdated
5. Create a new file in your repo source folder named **private.key**, and paste in that copied RSA private key, then save it. | ||
6. Update the file **app/ds_config.py** and include the newly created API key from step 2 as well as your account user id GUID which is also found on the Admin panel: `https://admindemo.docusign.com/api-integrator-key`. | ||
|
||
From there you should be able to run the launcher using **python run.py** then selecting **Json Web Token** when authenticaing your account. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Json should be JSON
README.md
Outdated
|
||
## License and additional information | ||
|
||
### Implicit Grant | ||
|
||
The examples in this repository can also be used the |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
be used with the...
app/ds_config_sample.py
Outdated
@@ -30,6 +30,6 @@ | |||
DS_JWT = { | |||
"ds_client_id": "{CLIENT_ID}", | |||
"ds_impersonated_user_id": "{IMPERSONATED_USER_ID}", # the id of the user | |||
"private_key_file": "private.key", # path to file which hold private key or private key itself | |||
"private_key_file": "./private.key", # create a new file named private.key in the app directory |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"Create a new file in your repo source folder named private.key then copy and paste your RSA private key there and save it."
Made small changes in the views code to remove reference to Authorization code grant since this is now a consolidated launcher.