Skip to content

Commit bb6ffa8

Browse files
committed
DEVDOCS-9711 - removing the ^ (caret) character when printing consent URL
1 parent 955b108 commit bb6ffa8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

JWT-Console/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ static void Main(string[] args)
4242
// build a URL to provide consent for this Integration Key and this userId
4343
string url = "https://" + ConfigurationManager.AppSettings["AuthServer"] + "/oauth/auth?response_type=code" + caret + "&scope=impersonation%20signature" + caret +
4444
"&client_id=" + ConfigurationManager.AppSettings["ClientId"] + caret + "&redirect_uri=" + DevCenterPage;
45-
Console.WriteLine($"Consent is required - launching browser (URL is {url})");
45+
Console.WriteLine($"Consent is required - launching browser (URL is {url.Replace(caret, "")})");
4646

4747
// Start new browser window for login and consent to this app by DocuSign user
4848
if (RuntimeInformation.IsOSPlatform(OSPlatform.Windows))

0 commit comments

Comments
 (0)