lumijiez
lumijiez
CC#
Created by lumijiez on 9/7/2024 in #help
Implementing Google OAuth throws an error after logging in
thank you once again
18 replies
CC#
Created by lumijiez on 9/7/2024 in #help
Implementing Google OAuth throws an error after logging in
thank you, i hope you have a beautiful life
18 replies
CC#
Created by lumijiez on 9/7/2024 in #help
Implementing Google OAuth throws an error after logging in
i misunderstood what callbackpath did
18 replies
CC#
Created by lumijiez on 9/7/2024 in #help
Implementing Google OAuth throws an error after logging in
thank you SO MUCH
18 replies
CC#
Created by lumijiez on 9/7/2024 in #help
Implementing Google OAuth throws an error after logging in
yeah, i understood, i did that and it worked lol
18 replies
CC#
Created by lumijiez on 9/7/2024 in #help
Implementing Google OAuth throws an error after logging in
so, it means this returns a wrong url if im getting a mismatch right?
18 replies
CC#
Created by lumijiez on 9/7/2024 in #help
Implementing Google OAuth throws an error after logging in
public IActionResult Login()
{
var redirectUrl = Url.Action("Callback", "GoogleOAuth");
var properties = new AuthenticationProperties
{
RedirectUri = redirectUrl
};
return Challenge(properties, GoogleDefaults.AuthenticationScheme);
}
public IActionResult Login()
{
var redirectUrl = Url.Action("Callback", "GoogleOAuth");
var properties = new AuthenticationProperties
{
RedirectUri = redirectUrl
};
return Challenge(properties, GoogleDefaults.AuthenticationScheme);
}
18 replies
CC#
Created by lumijiez on 9/7/2024 in #help
Implementing Google OAuth throws an error after logging in
then
18 replies
CC#
Created by lumijiez on 9/7/2024 in #help
Implementing Google OAuth throws an error after logging in
ohh, i see
18 replies
CC#
Created by lumijiez on 9/7/2024 in #help
Implementing Google OAuth throws an error after logging in
that wont work because im not using the default google url, so i need to put it there, if i remove the callback path setting, google just shows a redirect mismatch
18 replies