Skip to content

Commit

Permalink
Update MainPage.xaml.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
frederikprijck committed Oct 27, 2023
1 parent c74eb77 commit 48d6f37
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Sample/Auth0MauiApp/MainPage.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@ public partial class MainPage : ContentPage
{
Domain = "",
ClientId = "",
Scope = "openid profile email"
Scope = "openid profile email",
RedirectUri = "myapp://callback",
PostLogoutRedirectUri = "myapp://callback",
});

public MainPage()
Expand Down Expand Up @@ -64,4 +66,4 @@ private void DisplayResult(LoginResult loginResult)
ErrorLabel.Text = "";
}
}
}
}

0 comments on commit 48d6f37

Please sign in to comment.