public IActionResult Login()
{
string redirectUrl = "https://localhost:8080/api/identity/signin-google";
AuthenticationProperties properties =
_signInManager.ConfigureExternalAuthenticationProperties("Google",redirectUrl);
return Challenge(properties, "Google");
}
public IActionResult Login()
{
string redirectUrl = "https://localhost:8080/api/identity/signin-google";
AuthenticationProperties properties =
_signInManager.ConfigureExternalAuthenticationProperties("Google",redirectUrl);
return Challenge(properties, "Google");
}