#mohammedfaahiz_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/1311265260992466966
đ Have more to share? Add more details, code, screenshots, videos, etc. below.
Hi, let me help you with this.
Could you please share the Request ID req_xxx? https://support.stripe.com/questions/finding-the-id-for-an-api-request
i am not able to find the apple pay requests in stripe dashboard
dashboard is nt showing any requests that is done as apple pay
Can you share a screenshot of the error you're seeing?
Are you using any guide for this type of integration?
Are you just trying to integrate Apple Pay? Or do you have some particular requirements?
i have gone through stripe documentation followed mentioned steps
i trying to integrate payment using apple pay
simple apple pay integration
You don't need to use Tokens then. Are you using PaymentElement, Express Checkout Element, or mobile integration?
mobile intergation
I recommend you to go through this guide then (feel free to select iOS/Android): https://docs.stripe.com/payments/accept-a-payment?platform=react-native
This way, you will just need to create a PaymentIntent, and display the Mobile Payment Element. You will also be able to display all other payment method types available with Stripe without any extra work.
i am able to get the button for apple pay and get the sheet clicking on it. there after not able to complete the payment due the issue
That's not the recommended integration. If you just want to display a standalone Apple Pay button, you can follow this instead: https://docs.stripe.com/apple-pay?platform=ios
Same flow: create a PaymentIntent -> display the button -> confirm PaymentIntent. No need to create and handle tokens.
we followed the same documentation
we are able to send or confirm payment with stripe
The guide doesn't instruct creating and using tokens. I am not sure I understand what's your challenge exactly then.
we are using bottom sheet of flutter to process the payments. could you share document related to flutter instead of native or ios
Flutter SDK is not developed by Stripe. But I am sure Mobile Payment Element integration with PaymentIntent should be one of their recommended integrations.
we have successfully implemented Google pay and Card payment we are only facing the issue with apple pay!
The endpoint and parameter you're using expects a Token object ID (tok_xxx). You're not passing that, hence the error. Looks like you're manually creating Apple Pay tokens, which you need to convert to a Stripe Token via our API
But, this is an undocumented flow, so the API details you need to do that part (create a Stripe Token from the Apple Pay data) is not publicly documented
As noted you should be using our native payment UIs that are supported in the Flutter SDKs and nahve built-in wallet support
intially it wasnt epxecting token
amd we were facing same issue
is there a way which doesnt need token and we could successfully proceed with apple pay
Yes, as explained with the Payment Sheet: https://docs.stripe.com/apple-pay?platform=ios
Which the Flutter SDK supports
ok
But we don't have any specific Flutter documentation as it's not an officially supported language