Common issues with Embed
Issue: “Must create a new ApplePaySession
from a user gesture handler.”
This JavaScript error is thrown by the Apple Pay SDK if there’s an attempt to create a ApplePaySession
outside of a user gesture handler.
This usually means there’s too much time between the last user interaction, and the start of the Apple Pay session. This is usually caused by some kind of slow task that is performed right after a user clicked a button to submit Embed and before the Apple Pay payment sheet opens. For example, you may try to make an API call to your server to get the latest order ID, which can take hundreds of milliseconds. This delay between the last user action and the start of the Apple Pay session causes Apple Pay to fail.
Solution: Use onBeforeTransaction
To solve for this issue, move any slow actions into Embed’s onBeforeTransaction
callback. This function will run before the transaction is created, but after Apple Pay has been initialized.
Make sure to return a promise from inside the callback block. You will need to make it resolve or reject depending on your needs. If reject
is called, a transaction will
not be created and the transactionFailed
event will be broadcasted.
Waiting for a server response before programmatically submitting Embed
In some cases, you might want to make a call to your server to fetch some information to include as part of the transaction,
when the user clicks your custom Pay button and before submitting with embed.submit()
.
However, this can cause the issue described above, where Apple Pay fails because there’s a delay between the last user interaction
(clicking the Pay button) and the start of the Apple Pay session (happening on embed.submit()
once the call is complete).
Moving the call to onBeforeTransaction
won’t work in this case as that callback is executed after the Apple Pay session
has already been initialized.
It is currently not possible to update the information in the payment sheet once open.
This is a security measure of the Apple Pay SDK and there is no way to prevent this error from occurring in that scenario.
Issue: “Page already has an active payment session.”
This JavaScript error is thrown by the Apple Pay SDK if more than one ApplePaySession
is used during the transaction.
This usually means Embed has been submitted more than once in quick succession, therefore multiple ApplePaySession
are created and used in the transaction process.
Other reasons might include the session being expired (it expires after five minutes) or the session request not being sent from within Embed.
Solution: Make sure Embed is not submitted twice too quickly
To solve the issue, make sure your integration doesn’t cause Embed submitting multiple times too quickly.
- Check that your form or submit button handlers are not firing more than once
- If you’re submitting Embed without a form, make sure not to pass the
form
option at the same time
Was this page helpful?