Users API for legacy bundled services

The Users API allows an application to:

  • Detect whether the current user has signed in.
  • Redirect the user to the appropriate sign-in page to sign in.
  • Request that your application user create a new Google account if they don't have one already.

While a user is signed in to the application, the app can access the user's email address. The app can also detect whether the current user is an administrator (also called "admin user"), making it easy to implement admin-only areas of the app. To view the contents of the user package, see the user package reference.

User authentication in Go 1.11

The following example greets a user who has signed in to the app with a personalized message and a link to sign out. If the user is not signed in, the app offers a link to the sign-in page for Google Accounts.

import (
	"fmt"
	"net/http"

	"google.golang.org/appengine"
	"google.golang.org/appengine/user"
)

func welcome(w http.ResponseWriter, r *http.Request) {
	w.Header().Set("Content-type", "text/html; charset=utf-8")
	ctx := appengine.NewContext(r)
	u := user.Current(ctx)
	if u == nil {
		url, _ := user.LoginURL(ctx, "/")
		fmt.Fprintf(w, `<a href="%s">Sign in or register</a>`, url)
		return
	}
	url, _ := user.LogoutURL(ctx, "/")
	fmt.Fprintf(w, `Welcome, %s! (<a href="%s">sign out</a>)`, u, url)
}

Enforcing sign in and admin access with app.yaml

If you have pages that require the user to be signed in order to access, you can enforce this in your app.yaml file.

The handler configuration can also require that the user be a registered administrator for the application; that is, the user must have the Viewer, Editor, Owner, or App Engine Admin role. This makes it easy to build administrator-only sections of the site, without having to implement a separate authorization mechanism.

To learn how to configure authentication for URLs, see how to require login or administrator status in the app.yaml reference.

OAuth in Go

In addition to the standard user authentication modes, users may be identified to your app via OAuth. OAuth is a protocol that allows a user to grant a third party limited permission to access a web application on their behalf, without sharing their credentials (username and password) with the third party. More information on the OAuth API, including the interaction required by clients, can be found in the OAuth documentation.

Note that using OAuth to identify your users is completely orthogonal to the standard user authentication modes. For example, pages marked with login: required or login: admin will refuse to load if the user is only authenticated via OAuth.

Here is a simple example of accessing OAuth user information in a Go request handler:

import (
	"fmt"
	"net/http"

	"google.golang.org/appengine"
	"google.golang.org/appengine/user"
)

func welcomeOAuth(w http.ResponseWriter, r *http.Request) {
	ctx := appengine.NewContext(r)
	u, err := user.CurrentOAuth(ctx, "")
	if err != nil {
		http.Error(w, "OAuth Authorization header required", http.StatusUnauthorized)
		return
	}
	if !u.Admin {
		http.Error(w, "Admin login only", http.StatusUnauthorized)
		return
	}
	fmt.Fprintf(w, `Welcome, admin user %s!`, u)
}

Authentication options

Your app can authenticate users using one of these options:

  • A Google Account
  • An account on your Google Workspace domain

Choosing an authentication option

After you create your app, you can choose the authentication option you want to use. By default, your app will use Google Accounts for authentication. To choose another option, such as Google Workspace domain, go to the settings page for your project in the Google Cloud console and click Edit. In the Google authentication dropdown menu, select the desired authentication type, and then click Save.

Signing in and out

An application can detect whether a user has signed in to the app with your app's chosen authentication option. If the user is not signed in, the app can direct the user to Google Accounts to sign in or create a new Google account. The app gets the URL for the sign-in page by calling a method of the Users API. The app can display this URL as a link, or it can issue an HTTP redirect to the URL when the user visits a page that requires authentication.

If your app uses Google Accounts or Google Workspace for authentication, the name of your application appears on the sign-in page when the user signs in to your application. The name shown is the application name that you specified when registering the application. You can change this name in the Application name field of the Google Cloud console Credentials page.

Once the user has signed in or created a Google account, the user is redirected back to your application. The app provides the redirect URL to the method that generates the sign-in URL.

The Users API includes a method to generate a URL for signing out of the app. The sign-out URL de-authenticates the user from the app, then redirects back to the app's URL without displaying anything.

A user is not signed in to an application until they are prompted to do so by the app and enter their account's email address and password. This is true even if the user has signed in to other applications using their Google Account.

Accessing account information

While a user is signed in to an app, the app can access the account's email address for every request the user makes to the app. The app can also access a user ID that identifies the user uniquely, even if the user changes the email address for their account.

The app can also determine whether the current user is an administrator for the app. An admin user is any user that has the Viewer, Editor, Owner, or App Engine Admin role. You can use this feature to build administrative features for the app, even if you don't authenticate other users. The Go, Java, PHP and Python APIs make it easy to configure URLs as "administrator only".

Google accounts and the development server

The development server simulates the Google Accounts system using a fake sign-in screen. When your application calls the Users API to get the URL for the sign-in screen, the API returns a special development server URL that prompts for an email address, but no password. You can type any email address into this prompt, and the app will behave as if you are signed in with an account with that address.

The fake sign-in screen also includes a checkbox that indicates whether the fake account is an administrator; that is, whether the account has the Viewer, Editor, Owner, or App Engine Admin role. If you check this box, the app will behave as if you are signed in using an administrator account.

Similarly, the Users API returns a sign-out URL that cancels the fake sign-in.