#arpit-gupta_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/1334121703093305355
đ 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.
- arpit-gupta_unexpected, 1 day ago, 44 messages
Can you share the ID (req_xxx) of the API request? https://support.stripe.com/questions/finding-the-id-for-an-api-request
Find help and support for Stripe. Our support site provides answers on all types of situations, including account information, charges and refunds, and subscriptions information. Get your questions answered and find international support for Stripe.
The intent already has a payment_method attached so you can omit that param in your confirmCashappPayment call: https://docs.stripe.com/js/payment_intents/confirm_cashapp_payment#stripe_confirm_cashapp_payment-attached
stripe.confirmCashappPayment('pi_abc_secret_xyz')
Is sufficient
Tried that too but didn't work
Sending you the request id
req_IkTeZylYqNVgcR
Same error I'm getting without sending the payment method id
Hmm, yeah weird. Looks like a bug. Out of interest why confirm with Stripe.js and not server-side if you already have a saved PM?
For confirming on server-side then we need to pass payment_method_type = [card, cashapp] and need to remove automatic_payment_methods and setup_future_usage fields while creating payment intent
But if I wan't some action to be taken by user on confirming then I won't be able to do
Can you send the actual code you used for this request please?
The confirm code you mean?
Yes, for this request: req_IkTeZylYqNVgcR
confirmCardPaymentPayload = await stripe.value.confirmCashappPayment(
clientSecret
)
Looks like you're still passing the payment_method param
Nope I'm not and in the request id also you can see that it is not being sent
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
But I shared you this request id inwhich it isn't passed : req_IkTeZylYqNVgcR
You are looking into wrong request id
Okay till then I'll try to verify it from backend