We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 955b108 commit bb6ffa8Copy full SHA for bb6ffa8
1 file changed
JWT-Console/Program.cs
@@ -42,7 +42,7 @@ static void Main(string[] args)
42
// build a URL to provide consent for this Integration Key and this userId
43
string url = "https://" + ConfigurationManager.AppSettings["AuthServer"] + "/oauth/auth?response_type=code" + caret + "&scope=impersonation%20signature" + caret +
44
"&client_id=" + ConfigurationManager.AppSettings["ClientId"] + caret + "&redirect_uri=" + DevCenterPage;
45
- Console.WriteLine($"Consent is required - launching browser (URL is {url})");
+ Console.WriteLine($"Consent is required - launching browser (URL is {url.Replace(caret, "")})");
46
47
// Start new browser window for login and consent to this app by DocuSign user
48
if (RuntimeInformation.IsOSPlatform(OSPlatform.Windows))
0 commit comments