Implement getUserData changes
To determine if a customer provided consent to share their Amazon account details, in your app’s main screen component, call theuseIapUserData() hook method with the fetchUserProfileAccessConsentStatus flag of the UserDataRequest object set to true.
The following example shows how to build a UserDataRequest object and invoke it using the useIapUserData() hook when the customer has given consent to obtain their details.
userProfileAccessConsentStatus of the UserData object has the status CONSENTED. If a customer hasn’t provided consent or if the consent token expired, userProfileAccessConsentStatus has the status UNAVAILABLE.
The following code shows how to handle the consent data received from the UserDataResponse object.
requestUserProfileAccess() method and later update your server with the response of the method. Then call Appstore IAP REST APIs to get an access token and the customer profile. Create an account in your back-end system with the user information shared.
Optional - If the customer doesn’t provide consent, show your own sign-in screen. The customer can then enter their credentials using the keyboard to sign in to your app.
Get Access Token API
Appstore IAP provides the Get Access Token REST API for you to obtain an access token. This section describes the request, response, and errors.Access token request
After the app receives a response torequestUserProfileAccess() with a valid authorization code, it can use that code to obtain an access token. With an access token, the client can read a customer profile.
The Get Access Token API must use a POST request rather than a GET request, as shown in the following example.
Access token response
To access customer data, you must provide an access token to the Appstore IAP Get User Profile API. An access token is an alphanumeric code 350 characters or more in length, with a maximum size of 2048 bytes. Access tokens begin with the charactersAtza|.
Response parameters are encoded using the application/json media type. For more information, see RFC4627. The following is an example response from an access token request.
Access token errors
For some errors, the authorization service may return anHTTP 401 (Unauthorized) status code. This includes cases where the client passed the client_id and client_secret values in the authorization header and the client could not be authenticated.
The following table describes the error parameters in an unsuccessful response.
Access token error response parameters
error.
Access token error response codes
Get User Profile API
Appstore IAP provides the Get User Profile REST API to get user profile data. This section describes the request, response, and errors.User profile request
To access authorized user profile data, use the Get User Profile API to submit the access token to the Appstore. The Get User Profile API uses an HTTPS GET request and takes the access token that you received from the Get Access Token API as it’s only parameter. The following example shows a GET request to obtain user profile data.User profile response
If your access token is valid, you receive the customer’s profile data as an HTTP response in JSON, as shown in this example.Best practices for account setup
Follow these best practices for setting up customer accounts.- If
UserProfileAccessConsentStatushas the valueCONSENTEDin thegetUserData()response of theuseIapUserData()hook, do the following:- Fetch the user information from the Appstore IAP Get User Profile API. Use this information to create a login account with a temporary password. Sign the customer in to the app without requesting a password reset or additional details from the customer.
- Later, ask the customer to reset the password through email.
- If
UserProfileAccessConsentStatusisUNAVAILABLE, use the default app sign-up experience for the customer.

