Set up Amplify Auth
The Amplify Auth category provides an interface for authenticating a user. Behind the scenes, it provides the necessary authorization to the other Amplify categories. It comes with default, built-in support for Amazon Cognito User Pool and Identity Pool. The Amplify CLI helps you create and configure the auth category with an authentication provider.
Goal
To setup and configure your application with Amplify Auth and go through a simple api to check the current auth session.
Prerequisites
- An Android application targeting at least Android SDK API level 24 with Amplify libraries integrated
- For a full example of creating Android project, please follow the project setup walkthrough
Install Amplify Libraries
Add the following dependency to your app's build.gradle
along with others you added above in Prerequisites and click "Sync Now" when prompted:
dependencies { implementation 'com.amplifyframework:aws-auth-cognito:ANDROID_VERSION'}
Set Up Backend Resources
The most common way to use Authentication with Amplify is via the Amplify CLI, which allows you to create new Amazon Cognito resources or import existing ones. However, you can also use the Amplify Studio console to configure authentication or use the Amplify.configure()
method to set up authentication with existing resources.
Prerequisites: Install and configure the Amplify CLI in addition to the Amplify libraries and necessary dependencies.
To start provisioning auth resources in the backend, go to your project directory and execute the command:
amplify add auth
Enter the following when prompted:
? Do you want to use the default authentication and security configuration? `Default configuration`? How do you want users to be able to sign in? `Username`? Do you want to configure advanced settings? `No, I am done.`
If you have previously enabled an Amplify category that uses Auth behind the scenes (e.g. API category), you can run the
amplify update auth
command to edit your configuration if needed.
To push your changes to the cloud, execute the command:
amplify push
Upon completion, amplifyconfiguration.json
should be updated to reference provisioned backend auth resources. Note that these files should already be a part of your project if you followed the project setup walkthrough.
Prerequisites: Install and configure the Amplify CLI in addition to the Amplify libraries and necessary dependencies.
To import existing Amazon Cognito resources into your Amplify project, execute the command:
amplify import auth
? What type of auth resource do you want to import? Cognito User Pool and Identity Pool Cognito User Pool only
Once you've selected an option, you'll be able to search for and import an existing Cognito User Pool and Identity Pool (or User Pool only) within your AWS account. The amplify import auth
command will also do the following:
- Automatically populate your Amplify Library configuration file (
amplifyconfiguration.json
) with your chosen Amazon Cognito resource information - Provide your designated existing Cognito resource as the authentication & authorization mechanism for all auth-dependent categories (API, Storage and more)
- Enable Lambda functions to access the chosen Cognito resource if you permit it
If you have previously enabled an Amplify category that uses Auth behind the scenes (e.g. API category), you can run the
amplify update auth
command to edit your configuration if needed.
After configuring your Authentication options, update your backend and deploy the service by running the push
command:
amplify push
Now, the authentication service has been deployed and you can start using it. To view the deployed services in your project at any time, go to Amplify Console by running the following command:
amplify console
For more details, see how to Use an existing Cognito User Pool and Identity Pool.
Prerequisites: Install and configure the Amplify CLI in addition to the Amplify libraries and necessary dependencies.
Amplify Studio allows you create auth resources, set up authorization rules, implement Multi-factor authentication (MFA), and more via an intuitive UI. To set up Authentication through the Amplify Studio, take the following steps:
- Sign in to the AWS Management Console and open AWS Amplify.
- In the navigation pane, choose an application.
- On the application information page, choose the Backend environments tab, then choose Launch Studio.
- On the Set up menu, choose Authentication.
- In the Configure log in section, choose a login mechanism to add from the Add login mechanism list. Valid options are Username, Phone number, Facebook, Google, Amazon, and Sign in with Apple. If you choose one of the social sign-in mechanisms (i.e. Facebook, Google, Amazon, or Sign in with Apple), you will also need to enter your App ID, App Secret, and redirect URLs.
- (Optional) Add multi-factor authentication (MFA). MFA is set to Off by default. To turn on MFA, do the following in the Multi-factor authentication section:
- Choose Enforced to require MFA for all users or choose Optional to allow individual users to enable MFA.
- (Optional) Choose SMS, and enter your SMS message.
- (Optional) Choose Authenticator Application if you want your app to load with an authentication flow that includes sign up and sign in.
- In the Configure sign up section, expand Password protection settings and customize the password policy settings to enforce. u6. Choose Save and Deploy. This starts a CloudFormation deployment with the progress displayed in the upper right corner of the page.
- After creating and configuring your auth resources, you'll need to pull them down from Amplify Studio. To do so, simply click on "Local setup instructions" in the upper right hand corner of the Studio console and execute the CLI command it provides at the root directory of your app.
You can also import existing Amazon Cognito resources and manage users and groups through the Amplify Studio UI.
If you are not using the Amplify CLI, existing Authentication resources from AWS (e.g. Amazon Cognito UserPools or Identity Pools) can be used with the Amplify Libraries by manually creating a configuration file (amplifyconfiguration.json
) and then updating the associated Plugin within it:
{ "auth": { "plugins": { "awsCognitoAuthPlugin": { "IdentityManager": { "Default": {} }, "CredentialsProvider": { "CognitoIdentity": { "Default": { "PoolId": "[COGNITO IDENTITY POOL ID]", "Region": "[REGION]" } } }, "CognitoUserPool": { "Default": { "PoolId": "[COGNITO USER POOL ID]", "AppClientId": "[COGNITO USER POOL APP CLIENT ID]", "Region": "[REGION]" } }, "Auth": { "Default": { "authenticationFlowType": "USER_SRP_AUTH", "socialProviders": [], "usernameAttributes": [], "signupAttributes": [ "[SIGNUP MECHANISM]" ], "passwordProtectionSettings": { "passwordPolicyMinLength": [PASSWORD LENGTH], "passwordPolicyCharacters": [] }, "mfaConfiguration": "OFF", "mfaTypes": [ "[MFA TYPE]" ], "verificationMechanisms": [ "[VERIFICATION MECHANISM]" ], "OAuth": { "WebDomain": "[YOUR COGNITO DOMAIN ]", "AppClientId": "[COGNITO USER POOL APP CLIENT ID]", "SignInRedirectURI": "[CUSTOM REDIRECT SCHEME AFTER SIGN IN, e.g. myapp://]", "SignOutRedirectURI": "[CUSTOM REDIRECT SCHEME AFTER SIGN OUT, e.g. myapp://]", "Scopes": [ "phone", "email", "openid", "profile", "aws.cognito.signin.user.admin" ] } } } } } }}
- CredentialsProvider:
- Cognito Identity:
- Default:
- PoolID: ID of the Amazon Cognito Identity Pool (e.g.
us-east-1:123e4567-e89b-12d3-a456-426614174000
) - Region: AWS Region where the resources are provisioned (e.g.
us-east-1
)
- PoolID: ID of the Amazon Cognito Identity Pool (e.g.
- Default:
- Cognito Identity:
- CognitoUserPool:
- Default:
- PoolId: ID of the Amazon Cognito User Pool (e.g.
us-east-1_abcdefghi
) - AppClientId: ID for the client used to authenticate against the user pool
- Region: AWS Region where the resources are provisioned (e.g.
us-east-1
)
- PoolId: ID of the Amazon Cognito User Pool (e.g.
- Default:
- Auth:
- Default:
- authenticationFlowType: The authentication flow type, takes values
USER_SRP_AUTH
,CUSTOM_AUTH
, andUSER_PASSWORD_AUTH
. Default isUSER_SRP_AUTH
. - OAuth: Hosted UI Configuration (only include this if using the Hosted UI flow)
- Scopes: Scopes should match the scopes enables in Cognito under "App client settings"
- authenticationFlowType: The authentication flow type, takes values
- Default:
If you are using a Cognito User Pool without a Cognito Identity Pool, you can omit the CredentialsProvider section in the configuration.
Initialize Amplify Auth
Add the Auth plugin before calling Amplify.configure
. Update the code you added in Prerequisites:
import com.amplifyframework.auth.cognito.AWSCognitoAuthPlugin;import com.amplifyframework.core.Amplify;
// Add this line, to include the Auth plugin.Amplify.addPlugin(new AWSCognitoAuthPlugin());Amplify.configure(getApplicationContext());
import com.amplifyframework.auth.cognito.AWSCognitoAuthPluginimport com.amplifyframework.core.Amplify
// Add this line, to include the Auth plugin.Amplify.addPlugin(AWSCognitoAuthPlugin())Amplify.configure(applicationContext)
import com.amplifyframework.auth.cognito.AWSCognitoAuthPluginimport com.amplifyframework.kotlin.core.Amplify
// Add this line, to include the Auth plugin.Amplify.addPlugin(AWSCognitoAuthPlugin())Amplify.configure(applicationContext)
import com.amplifyframework.auth.cognito.AWSCognitoAuthPlugin;import com.amplifyframework.rx.RxAmplify;
// Add this line, to include the Auth plugin.RxAmplify.addPlugin(new AWSCognitoAuthPlugin());RxAmplify.configure(getApplicationContext());
Check the current auth session
You can now check the current auth session.
For testing purposes, you can run this from your MainActivity's onCreate
method.
import android.util.Log;import com.amplifyframework.core.Amplify;
Amplify.Auth.fetchAuthSession( result -> Log.i("AmplifyQuickstart", result.toString()), error -> Log.e("AmplifyQuickstart", error.toString()));
import android.util.Logimport com.amplifyframework.core.Amplify
Amplify.Auth.fetchAuthSession( { Log.i("AmplifyQuickstart", "Auth session = $it") }, { error -> Log.e("AmplifyQuickstart", "Failed to fetch auth session", error) })
import android.util.Logimport com.amplifyframework.auth.AuthExceptionimport com.amplifyframework.kotlin.core.Amplify
try { val session = Amplify.Auth.fetchAuthSession() Log.i("AmplifyQuickstart", "Auth session = $session")} catch (error: AuthException) { Log.e("AmplifyQuickstart", "Failed to fetch auth session", error)}
import android.util.Log;import com.amplifyframework.rx.RxAmplify;
RxAmplify.Auth.fetchAuthSession() .subscribe( result -> Log.i("AmplifyQuickstart", result.toString()), error -> Log.e("AmplifyQuickstart", error.toString()) );
The isSignedIn
property of the authSession
will be false since you haven't signed in to the category yet.
Authentication with Amplify
There are two ways to add authentication capabilities to your application.
Option 1: Use the Authenticator UI component
The Authenticator is a UI component that automatically integrates with your existing Amplify configuration and allows you to easily add the entire authentication flow to your application.
Visit Authenticator | Amplify UI for Android to get started.
Option 2: Manually call the Authentication APIs
Follow the instructions in Sign In to learn about how to integrate the registration and authentication flows in your application with the Auth APIs.
Next Steps
Congratulations! You've successfully setup AWS Cognito Auth plugin. Check out the following links to see other Amplify Auth use cases: