Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion aspnetcore/security/authentication/social/google-logins.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ author: wadepickett
description: This tutorial demonstrates the integration of Google account user authentication into an existing ASP.NET Core app.
ms.author: wpickett
ms.custom: mvc
ms.date: 06/18/2025
ms.date: 12/26/2025
uid: security/authentication/google-logins
---
# Google external login setup in ASP.NET Core
Expand Down Expand Up @@ -71,6 +71,12 @@ Manage API credentials and usage in the [API Console](https://console.developers

## Configure Google authentication

Add the [`Microsoft.AspNetCore.Authentication.Google`](https://www.nuget.org/packages/Microsoft.AspNetCore.Authentication.Google) nuget package:

```dotnetcli
dotnet add package Microsoft.AspNetCore.Authentication.Google
```

:::moniker range=">= aspnetcore-6.0"

Add the authentication service to the `Program` file:
Expand Down