Ti ringraziamo per la visita. Questa pagina è per il momento disponibile solo in inglese.

Integrate with Your Existing Account System

In this section, we'll discuss how to integrate customer profile data from Login with Amazon user accounts with a website that already has an account management system. You will learn how to enable your site or app to let users log in using their Amazon accounts, and how to let existing users attach their Amazon identity so they can log in with their Amazon credentials.

Prerequisites

This guide assumes you have previously signed up for Login with Amazon, registered your website as a Login with Amazon application, and have the appropriate SDK or server-side methods to communicate with the Login with Amazon service.

This guide also assumes your website currently has these features:

  1. An account database where you record information about each user account.
    • Users have some kind of unique identifier.
    • Users currently sign in using their username/password.
  2. A sign-in page for registered users.
  3. A registration page for registering new users by taking in profile information (name, email, and so on).
  4. Some mechanism for managing authentication state after the user successfully signs in so that the next page knows that the user is currently signed in (for example, storing that info in cookies or a back-end database).

Make Database Changes

You will need to modify your account database to record a mapping between Amazon account identifiers and your local accounts. This could take the form of a new field in your account table or a table that maps between Amazon account identifiers and your local account identifiers.

Amazon account identifiers are returned as the user_ID property, in the form amzn1.accountVALUE. For example: amzn1.account.K2LI23KL2LK2

Set up Login with Amazon

Using the relevant SDK or server-side methods for your website, provide a method for the user to log in with their Amazon credentials. This includes making changes to the UI of your sign-in and registration pages. Your sign-in page will need to have an option for users to select the "Login with Amazon" button to authenticate using their Amazon credentials. For more information, see Websites.

Obtain and Secure Amazon Customer Profile Data

Once the user has interacted with the Login with Amazon service to sign in (and, on the first visit, authorize data sharing), you will receive an authorization response from Login with Amazon. When you receive an authorization response you should:

  1. Send the access token in your authorization response to your server using HTTPS.
  2. From server-side, call the profile endpoint using the access token. See our Obtain Customer Profile Information for details on calling the profile endpoint, including code samples in multiple languages. Login with Amazon will return a customer profile response with values (such as user_id, email, name, and/or postal_code) you can keep on your server. Taking this step will ensure the profile data you save to your server belongs to the customer who is signed into your client.
  3. Search for the user’s Amazon account identifier within your user database to see if they have signed in before. If they have not then you will need to create a new account for them.
  4. Search for the user's email address in your account system. If they have a local account with that email address, prompt them to enter their local credentials to allow Login with Amazon to log in that account.
  5. Create cookies in the user’s browser or otherwise record them as authenticated with your site or app.

Find or Create a Local Account

The user profile response will always contain a parameter named user_id. The value of this parameter is a string which permanently and uniquely identifies the Amazon account to which the user has signed in. Amazon will always return the same identifier for each user.

You should search your user database to see if this Amazon account has previously signed in to your site or app. If you have not seen the Amazon account before, and it doesn't match an existing account, you will need to create a new entry in your local account database and associate it with the Amazon account identifier for the next time they sign in. If the Amazon account does match an existing local account, prompt the user for their local password to link the two accounts.

The authentication response may contain additional user data. For example, the user's name and email address. You can copy this information into your local account database when creating new accounts or to update existing accounts (for example, the user could have changed their email address on Amazon since the last time they signed in).

If you need to collect additional information from the user before creating an account then this is where you will want to display a registration page. You can prefill it with the information you received in the authentication response or you can show just the additional fields that you require.

Mark the User as Authenticated

After you have have received a valid authentication response and found or created a corresponding account in your own account database, mark the user has having authenticated. This step can work exactly the same as in your current authentication system.