I get the following error when trying to sign in with GOOGLE

I tried so many things and nothing works
At first I used the following code
app.UseGoogleAuthentication(clientId: "APIKEY.apps.googleusercontent.com", clientSecret: "SECRET-K");
I also tried the following
app.UseGoogleAuthentication(new GoogleOAuth2AuthenticationOptions() { ClientId = "APIKEY.apps.googleusercontent.com", ClientSecret = "SECRET-K", CallbackPath = new PathString("/signin-google") });
Bad luck,
My client ID for the web application is configured as follows: 
I have no idea what I'm doing wrong
Has anyone encountered this problem and found a solution for this
Much appreciated
Greetings
source share