#irshad-ali-jan_unexpected
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/1217056130409168957
๐ Have more to share? Add more details, code, screenshots, videos, etc. below.
Below are links to other discussions we've had with you in the past week in case you want to review that information. If your question is related to one of these previous discussions, please provide a comprehensive summary of the current state and what you need help with now. We help many users simultaneously, so a summary allows us to resolve your issue as soon as possible.
- irshad_sepadebit-fulfillment, 15 hours ago, 27 messages
- irshad-ali-jan_error, 5 days ago, 10 messages
- irshad-ali-jan_docs, 5 days ago, 27 messages
we have mobile app which calls backend controller which in return creates a session stripe.checkout.sessions.create
Are you opening those URLs in a webview? Or the native browser?
this is cs ID for that specific transaction
cs_live_a1VNxdoHyQwWqjHDJPMPyKoQWy204KQd29C7fPNyiChXHDlCetDUrkspJx
its a webview
Google Pay isn't very compatible with webviews, so the likelihood is that this is a symptom of that. If you're building a native mobile app, you shouldn't be using Checkout really but our native mobile UIs/SDKs
we are using react native
Then you should be using our RN SDK: https://github.com/stripe/stripe-react-native
React Native library for Stripe. Contribute to stripe/stripe-react-native development by creating an account on GitHub.
Otherwise try redirecting to Checkout in a non-webview
if its a non-webview will it work as expected?
I'm not sure โ I think so yes
so if we use a react native sdk as you suggested so what will be its impact on our current backend code? Does it mean we need to do all that what we do on backend inside react native ?
Well you'd be migrating off of Checkout Sessions entirely and using a direct Payment Intents integration. See link I shared
ok thanks for your explanation.