#mohammedfaahiz_code

1 messages ¡ Page 1 of 1 (latest)

zinc sableBOT
#

👋 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.

sharp osprey
#

Hi, let me help you with this.

abstract vault
#

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

sharp osprey
#

Can you share a screenshot of the error you're seeing?

abstract vault
sharp osprey
#

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?

abstract vault
#

i have gone through stripe documentation followed mentioned steps

#

i trying to integrate payment using apple pay

#

simple apple pay integration

sharp osprey
#

You don't need to use Tokens then. Are you using PaymentElement, Express Checkout Element, or mobile integration?

abstract vault
#

mobile intergation

sharp osprey
#

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.

abstract vault
#

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

sharp osprey
#

Same flow: create a PaymentIntent -> display the button -> confirm PaymentIntent. No need to create and handle tokens.

abstract vault
#

we are able to send or confirm payment with stripe

sharp osprey
#

The guide doesn't instruct creating and using tokens. I am not sure I understand what's your challenge exactly then.

abstract vault
#

we are using bottom sheet of flutter to process the payments. could you share document related to flutter instead of native or ios

zinc sableBOT
sharp osprey
#

Flutter SDK is not developed by Stripe. But I am sure Mobile Payment Element integration with PaymentIntent should be one of their recommended integrations.

abstract vault
#

we have successfully implemented Google pay and Card payment we are only facing the issue with apple pay!

wooden terrace
#

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

abstract vault
#

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

wooden terrace
#

Which the Flutter SDK supports

abstract vault
#

ok

wooden terrace
#

But we don't have any specific Flutter documentation as it's not an officially supported language