I am working on a C# project trying to generate a DocuSign envelope.
As a starting point, I am trying to work through a DocuSign JWT example at https://github.com/docusign/eg-01-csharp-jwt-framework.
I went to the URL that the console application told me to go to. https://account-d.docusign.com/oauth/auth?response_type=code&scope=signature impersonation&client_id=CLIENTID9&redirect_uri=https://www.docusign.com
After that process was complete, I did get an access_token returned to me in the URL.
I got the following token, I removed part of it with a (…) https://www.docusign.com/#access_token=eyJ0e...&expires_in=28800&token_type=bearer
What should I do next to generate an envelope and get a signing URL?