Using Auth with Endpoints
Requirements: a Google API project
The instructions on this page assume that you have a project for your application in the Google Developers Console . If you don't have one yet, here's how to create one:
Go to the Google Developers Console . Click Create Project , enter a name and a project ID, or accept the defaults, and click Create .
Adding authorization to an API backend
If you wish to restrict all or part of your API to only authorized apps, you must:
-
Specify the client IDs
(
clientIds
) of apps authorized to make requests to your API backend. - Add a User parameter to all exposed methods to be protected by authorization.
- Generate the client Library again for any Android clients
- Redeploy your backend API.
- If you have an Android client,update the regenerated jar file to your Android project.
- If you have an iOS client, regenerate the Objective-C library.
Specifying authorized clients in the API backend
You must specify which clients are allowed to access the API backend by means of a whitelist of client IDs . A client ID is generated by the Google Developers Console from a client secret, such as the SHA1 fingerprint of a key used to secure an Android app, or from the Bundle ID/Apple Store ID pair for an iOS app, as described in Creating OAuth 2.0 Client IDs . At runtime, a client app is granted the authorization token it needs to send requests to the API backend if its client secret matches one contained in a client ID within the API backend's client ID whitelist.
To specify which clients can be authenticated by your API backend:
- Get a complete list of the client IDs of the clients that you want to grant access to. This list is a list of OAuth 2.0 client IDs obtained for your project following the instructions provided below under Creating OAuth 2.0 Client IDs .
-
In the
clientIds
attribute of the @Api or @ApiMethod annotations for your API, supply the list of client IDs that you want to authenticate:-
For an iOS app, supply its iOS client ID in the
clientIds
whitelist. -
For a javascript app, supply its web client ID in the
clientIds
whitelist. -
For an Android app, you must supply both its Android client ID and a web client ID in
clientIds
whitelist. (You must add that same web client ID to theaudiences
list as shown next.)
-
For an iOS app, supply its iOS client ID in the
-
If you have an Android client, you must also supply the
audiences
attribute for the @Api annotation, set to the web client ID mentioned in the preceding step. The same web client ID must be in bothclientIds
andaudiences
.
The following sample snippet shows how to supply client IDs for a javascript client, for an iOS client, and an Android client:
@Api(
name = "tictactoe",
version = "v1",
scopes = {Constants.EMAIL_SCOPE},
clientIds = {Constants.WEB_CLIENT_ID, Constants.ANDROID_CLIENT_ID, Constants.IOS_CLIENT_ID},
audiences = {Constants.ANDROID_AUDIENCE}
)
public class Constants {
public static final String WEB_CLIENT_ID = "1-web-apps.apps.googleusercontent.com";
public static final String ANDROID_CLIENT_ID = "2-android-apps.googleusercontent.com";
public static final String IOS_CLIENT_ID = "3-ios-apps.googleusercontent.com";
public static final String ANDROID_AUDIENCE = WEB_CLIENT_ID;
public static final String EMAIL_SCOPE = "https://www.googleapis.com/auth/userinfo.email";
}
In the snippet, note the use of a class to map constants to the actual client ID values so you need only make changes in one place whenever you change the client IDs. Notice also that
audiences
is set to the web client ID value.
Adding a user parameter to methods for auth
When you declare a parameter of type
User
in your API method, the API backend framework automatically authenticates the user and enforces the authorized
clientIds
whitelist, ultimately by supplying the valid
User
or not. If the request from the app has a valid auth token or is in the list of authorized
clientIDs
, the framework supplies a valid
User
to the parameter. If the incoming request does not have a valid auth token or if the client is not on the
clientIDs
whitelist, the framework sets the
User
parameter to null. Your own code must handle the null case and the non-null case, as shown below.
To add a
User
param to your method
-
Import the App Engine User API in your API class:
import com.google.appengine.api.users.User;
-
Add a parameter of type User to each class method you wish to require authorization for, as shown in the following snippet:
Score.insert()
method:/** * Provides the ability to insert a new Score entity. */ @ApiMethod(name = "scores.insert") public Score insert(Score score, User user) throws OAuthRequestException, IOException { ... }
If an incoming client request has no authorization token or an invalid one,
user
is
null
. In your code, you need to check whether
user
is
null
and do ONE of the following, depending on the condition:
- If the user is present, perform the authorized action.
-
If the user is null, throw an
OAuthRequestException
. - Alternatively, if the user is null, perform some action for an unauthorized client access if some sort of unauthorized access is desired.
Providing authorization from clients
If your API backend requires authorization, you need to also support this authorization in your Android, iOS, or JavaScript client. Instructions for this vary slightly by client type, so more information is provided in these client-specific pages:
- Making Authenticated Calls from an Android Client
- Making Authenticated Calls from an iOS Client
- Making Authenticated Calls from a JavaScript Client
Creating OAuth 2.0 client IDs
If you wish to require authorization to access your API backend, you must obtain the required client IDs and supply them to the backend using the proper API annotation attribute. Precisely which client IDs are required and how you need to supply them can vary depending on whether the client is an Android app, iOS app, or javascript app. For details, see Specifying Authorized Clients in the API Backend .
Creating a web client ID
To create a web client ID:
- Visit the Google Developers Console in your browser.
- Select the project you are using for your backend API from the projects pulldown menu.
- Select APIs & auth > Credentials > Create new Client ID .
-
Fill out the
Create Client ID
form as follows:
- Select Web application as the Application Type .
-
If you are
testing the backend locally
, specify
http://localhost:8080
in the textbox labeled AUTHORIZED JAVASCRIPT ORIGINS . If you are deploying your backend API to production App Engine, specify the App Engine URL of your backend API in the textbox labeled AUTHORIZED JAVASCRIPT ORIGINS ; for example,https://your_project_id.appspot.com
, replacingyour_project_id
with your actual project ID. - Click Create Client ID .
- Note the client ID as you'll need to use it later in your client code. (Alternatively, you can revisit the project later in the console to determine its client ID.)
Creating an Android client ID
In order to create the Android client ID, you'll need to have the SHA1 fingerprint of the key you are using. If you use Eclipse with the Android Developer Tools (ADT) plugin, a debug keystore and a debug key is created automatically. You can use the debug key for testing purposes. (You must use a release key for your release version!) These instructions assume you are using the debug key.
The default debug keystore password is
android
, and the key alias is
androiddebugkey
. The default location for Linux and Mac OSX is
~/.android
.
- Generate a debug (or release) key for your Android application, if you don’t already have one. If you use Eclipse with the Android Developer Tools plugin, Eclipse automatically generates a debug key in the debug keystore the first time you build an Android project.
-
In a Linux or Mac OSX terminal window, you can get the SHA1 fingerprint of the debug key using the
keytool
(included with the Java SDK) and OpenSSL as follows:keytool -exportcert -alias androiddebugkey -keystore ~/.android/debug.keystore | openssl sha1
When prompted for a keystore password, for debug , enter the valueandroid
. -
Copy the SHA fingerprint key that is displayed after your run the above
keytool
command. You'll need to supply this when you generate the Android client ID in the console. - Open the Google Developers Console .
- Select your project in the projects pulldown menu.
- Select APIs & auth > Credentials > Create new Client ID .
-
Fill out the
Create Client ID
form as follows:
- For Application type , select Installed application > Android
- In the textbox labeled Package name enter your Android application package name.
- In the textbox labeled SIGNING CERTIFICATE FINGERPRINT , enter the SHA1 fingerprint you obtained above.
- Click Create Client ID .
- Note the client ID as you'll need to use it later in your client code. (Alternatively, you can revisit the project later in the console to determine its client ID.)
Creating an iOS client ID
- Open the Google Developers Console .
- When your project appears in the projects pulldown menu, select it to make it the active project.
- Select APIs & auth > Credentials > Create new Client ID .
-
Fill out the
Create Client ID
form as follows:
- For Application type , select Installed application > iOS
-
In the textbox labeled
Bundle ID
enter your application’s bundle identifier as listed in your application's
.plist
file (e.g.com.example.myapp
). - In the textbox labeled App Store ID , enter the App Store ID if the app was published in the Apple iTunes® App Store.
- Click Create Client ID .
- Note the client ID as you'll need to use it later in your client code. (Alternatively, you can revisit the project later in the console to determine its client ID.)