Skip to content

Commit

Permalink
Removed trailing path from redirectUri to support default online app …
Browse files Browse the repository at this point in the history
…config #5
  • Loading branch information
SuperOfficeDevNet authored Mar 28, 2022
1 parent 3be35bc commit 01a15c9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ static void Main(string[] args)
private async void SignIn()
{
// create a redirect URI using an available port on the loopback address.
string redirectUri = string.Format("http://127.0.0.1:7890/desktop-callback");
string redirectUri = string.Format("http://127.0.0.1:7890");
Console.WriteLine("redirect URI: " + redirectUri);

// create an HttpListener to listen for requests on that redirect URI.
Expand Down

0 comments on commit 01a15c9

Please sign in to comment.