Skip to content

Commit 080f02e

Browse files
committed
small fixes after C# README edits
1 parent 5c1d644 commit 080f02e

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -54,11 +54,11 @@ For a list of code examples that use the Monitor API, select the Python tab unde
5454

5555
To use [Authorization Code Grant](https://developers.docusign.com/platform/auth/authcode/), you will need an integration key and a secret key. See [Installation steps](#installation-steps) for details.
5656

57-
To use [JWT Grant](https://developers.docusign.com/platform/auth/jwt/), you will need an integration key, an RSA key pair, and the API Username GUID of the impersonated user. See [Installation steps for JWT Grant authentication](#installation-steps-for-jwt-grant-authentication) for details.
57+
To use [JWT Grant](https://developers.docusign.com/platform/auth/jwt/), you will need an integration key, an RSA key pair, and the User ID GUID of the impersonated user. See [Installation steps for JWT Grant authentication](#installation-steps-for-jwt-grant-authentication) for details.
5858

5959
For both authentication flows:
6060

61-
If you use this launcher on your own workstation, the integration key must include redirect a URI of http://localhost:5000/ds/callback
61+
If you use this launcher on your own workstation, the integration key must include a redirect URI of http://localhost:5000/ds/callback
6262

6363
If you host this launcher on a remote web server, set your redirect URI as
6464

@@ -95,19 +95,19 @@ Also, in order to select JSON Web Token authentication in the launcher, in app/d
9595
1. In your command-line environment, switch to the folder: `cd <Quickstart folder>` or `cd code-examples-python`
9696
1. To install dependencies, run: `pip3 install -r requirements.txt` (or pipenv can be used)
9797
1. To configure the launcher for [JWT Grant](https://developers.docusign.com/platform/auth/jwt/) authentication, create a copy of the file app/ds_config_sample.py and save the copy as app/ds_config.py.
98-
1. Add your API Username. On the [Apps and Keys](https://admindemo.docusign.com/authenticate?goTo=apiIntegratorKey) page, under **My Account Information**, copy the **API Username** GUID and save it in ds_config.py as your `ds_impersonated_user_id`.
98+
1. Add your User ID. On the [Apps and Keys](https://admindemo.docusign.com/authenticate?goTo=apiIntegratorKey) page, under **My Account Information**, copy the **User ID** GUID and save it in ds_config.py as your `ds_impersonated_user_id`.
9999
1. Add your integration key. On the [Apps and Keys](https://admindemo.docusign.com/authenticate?goTo=apiIntegratorKey) page, under **Apps and Integration Keys**, choose the app to use, then select **Actions > Edit**. Under **General Info**, copy the **Integration Key** GUID and save it in ds_config.py as your `ds_client_id`.
100100
1. Generate an RSA key pair, if you don’t already have one. Under **Authentication**, select **+ GENERATE RSA**. Copy the private key, and save it in a new file named app/private.key.
101101
1. Add the launcher’s redirect URI. Under **Additional settings**, select **+ ADD URI**, and set a redirect URI of http://localhost:5000/ds/callback. Select **SAVE**.
102102
1. Set a name and email address for the signer. In ds_config.py, save an email address as `signer_email` and a name as `signer_name`.
103-
**Note:** Protect your personal information. Please make sure that ds_config.py will not be stored in your source code repository.
103+
**Note:** Protect your personal information. Please make sure that your ds_config.py and private.key files will not be stored in your source code repository.
104104
1. Run the launcher:`python run.py`
105105
**Note:** You will need to alias the python command to run Python 3 or use `python3 run.py`
106106
1. Open a browser to http://localhost:5000
107107
1. On the black navigation bar, select **Login**.
108108
1. From the picklist, select **JSON Web Token** > **Authenticate with DocuSign**.
109109
1. When prompted, log in to your DocuSign developer account. If this is your first time using the app, select **ACCEPT** at the consent window.
110-
3. Select your desired code example.
110+
1. Select your desired code example.
111111

112112
## Payments code example
113113

0 commit comments

Comments
 (0)