#ludongming_code
1 messages ¡ Page 1 of 1 (latest)
đ Welcome to your new thread!
â˛ď¸ We'll be here soon! Typically we respond in a few minutes, but sometimes we might take a bit longer if the server is busy or if you have a particularly tricky question.
âąď¸ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can always start a new thread if you have another question.
đ This thread will always be available, even after it's closed. You can find it again using Discord's search, or you can save this link: https://discord.com/channels/841573134531821608/1314040450168131697
đ Have more to share? Add more details, code, screenshots, videos, etc. below.
Hi there, are you using the Stripe mobile SDK (e.g., iOS or react-native) in your application?
react-native
https://docs.stripe.com/billing/subscriptions/build-subscriptions?platform=react-native&ui=elements#add-apple-pay you can follow this doc to learn about how to add recurring payment info when using merchant tokens
Are the start date and end date required? Does this end date refer to the next deduction time? Is the parameter 'manageability URL' the merchant's management backend?
And the name of this merchant is still not displayed?
https://stripe.dev/stripe-react-native/api-reference/modules/PlatformPay.html#RecurringPaymentRequest You can find the typing info here.
endDate refers to the date of the final payment. For example you are starting a monthly subscription today and you'll expect this subscription to end one year later, then you should set endDate to 5 Dec 2025
Yes managementUrl is required
Documentation for @stripe/stripe-react-native
We currently do not have the address' manageability URL '? Our users can unsubscribe on the client side. Can this H5 address be sent to your address
This image is an email rejected by Apple Pay and sent to us
Yes, as long as it's a URL to a web pate where your csutomer can manage their recurring payments
Can you provide a user management subscription address?
https://docs.stripe.com/customer-management you can consider using billing portal
Is your H5 address chargeable
I'm not sure what you mean, can you rephrase the question?
If you are asking about the pricing, refer to https://stripe.com/pricing
What I mean is if you provide an h5URL for customer management to unsubscribe, do we need to pay you extra
I can't answers questions related to fees. You can refer to the link that I shared earlier, and reach out to support team if you have more questions about pricing. https://support.stripe.com/contact
Okay, another question is the merchant name. Where is your workplace configured? I did not see any configuration parameters for the merchant name in the confirmPlatformPayment configuration
Did you set merchantIdentifier when initialize the Stripe SDK?
You should set merchantIdentifier , merchantDisplayName is for Android.
So Apple Pay doesn't support merchant Display Name?
For iOS, Apple Pay payment sheet will retrieve the merchant name based on the merchantIdentifier that you specified.
Will merchant Display Name be displayed in the Apple Pay pop-up window?
No, as I explained before, merchantDisplayName is for Google Pay in Android.
Sorry, let me correct my answer.
merchantDisplayName is for displaying your business name in Stripe PaymentSheet. and Apple Pay will use merchantIdentifier to look up the merchant name and display it in Apple Pay payment sheet accordingly,
So yes you should set both.
So where should I set this up? Or where should I associate merchantIdentifier with merchantName? Is it in the Stripe backend or the Apple backend
In your react-native app
https://docs.stripe.com/payments/accept-a-payment?platform=react-native#stripe-initialization You can set merchantIdentifier through StripeProvider
https://docs.stripe.com/payments/accept-a-payment?platform=react-native#react-native-collect-payment-details and merchantDisplayName when calling initPaymentSheet
Isn't your second link for bank card payment? Not Apple Pay
Are you using payment sheet?
I am using confirmPlatformPayment instead of initPaymentSheet
Then you should just set merchantIdentifier