Page updated Nov 14, 2023

Enable guest access

The AWS Cognito Auth Plugin can be configured to automatically obtain guest credentials once the device is online so that you are able to use other categories "anonymously" without the need to sign in. You will not be able to perform user specific methods while in this state such as updating attributes, changing your password, or getting the current user. However, you can obtain the unique Identity ID which is assigned to the device through the fetchAuthSession method described here.

Follow these steps to enable guest access on your Auth category:

1amplify update auth
2
3What do you want to do?
4❯ Walkthrough all the auth configurations
5Select the authentication/authorization services that you want to use:
6❯ [choose whatever you initially selected - default is User Sign-Up, Sign-In, connected with AWS IAM controls]
7Allow unauthenticated logins? (Provides scoped down permissions that you can control via AWS IAM)
8❯ Yes
9 No
10 I want to learn more.
11
12 [proceed through the rest of the steps choosing the values you want - default is usually "No"]

To push your changes to the cloud, execute the command:

1amplify push

That's it! Now as long as you are online, you will automatically gain guest credentials (which are then cached for offline use as well).