#mebezac-apple-pay
1 messages · Page 1 of 1 (latest)
You do need to verify your domain when using Apply Pay w/ PaymentElement
You need to do this for both your root domain and your subdomains (see https://stripe.com/docs/stripe-js/elements/payment-request-button?html-or-react=html#verifying-your-domain-with-apple-pay)
Looks like you register a domain/subdomain using the API, that's good! A couple questions:
- Is the domain association file the same regardless of domain
- If that's the case, can do you need to return that actual file, or can you return plaintext through webserver (we use rails)
- Is there a limit to how many subdomains you can register with
Stripe::ApplePayDomain.create? (Each account of ours ~30k will have their own subdomain)
- Yes, the domain association file is the same
- You should be able to return it plaintext through webserver
- No, I don't believe there's a limit
Awesome, thanks for the quick responses!