#pillow-fun_code
1 messages ¡ Page 1 of 1 (latest)
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.
- pillow-fun_code, 1 day ago, 88 messages
đ Welcome to your new thread!
â˛ď¸ We'll be here soon! We typically respond in a few minutes, but in some cases we might need a bit more time (e.g., server's busy, you've got a complex question, etc.).
âąď¸ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can 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/1255731103969443936
đ Have more to share? Add details, code, screenshots, videos, etc. below.
Hi, what does 'but after entering the test card number, the loading status remains displayed' mean? Are you meaning to say the 'Processing' just loads and nothing happens?
as picture show, it's show processing...
How often does that happen?
Can you share the request id where you're attempting to create this payment? Here's how you can find a request ID: https://support.stripe.com/questions/finding-the-id-for-an-api-request
ok ,I'll find it
https://ghost-thorough-pegasus.ngrok-free.app/product/test.html You can visit this link to show the status
Express Checkout Element, https://docs.stripe.com/elements/express-checkout-element is our one-click payment button that supports Link, Apple Pay, Google Pay, PayPal, and Amazon Pay. From looking at the screenshot, it sounds like you're using our PaymentElements, https://docs.stripe.com/payments/accept-a-payment?platform=web&ui=elements.
I think the issues is that you might be mixing the two in the itegration
Can you share the specific id req_?
/v1/payment_intents
response
{
"id": "pi_3PW9T1Bxb4gWouQ408NyXRDW",
"object": "payment_intent",
"amount": 1099,
"amount_capturable": 0,
"amount_details": {
"tip": {
}
},
"amount_received": 0,
"application": "ca_POxDWqS86LaVpvwKz9arH8JN4VJncPgR",
"application_fee_amount": null,
"automatic_payment_methods": {
"allow_redirects": "always",
"enabled": true
},
"canceled_at": null,
"cancellation_reason": null,
"capture_method": "automatic_async",
"client_secret": "pi_3P*************************************************h27a",
"confirmation_method": "automatic",
"created": 1719460671,
"currency": "usd",
"customer": null,
"description": null,
"invoice": null,
"last_payment_error": null,
"latest_charge": null,
"livemode": false,
"metadata": {
},
"next_action": null,
"on_behalf_of": null,
"payment_method": null,
"payment_method_configuration_details": {
"id": "pmc_1PVTsUBxb4gWouQ4EAaJbIiM",
"parent": "pmc_1PVTsMGYwkaB6J4Bz6u7OQTc"
},
"payment_method_options": {
"card": {
"installments": null,
"mandate_options": null,
"network": null,
"request_three_d_secure": "automatic"
},
"link": {
"persistent_token": null
}
},
"payment_method_types": [
"card",
"link"
],
"processing": null,
"receipt_email": null,
"review": null,
"setup_future_usage": null,
"shipping": null,
"source": null,
"statement_descriptor": null,
"statement_descriptor_suffix": null,
"status": "requires_payment_method",
"transfer_data": null,
"transfer_group": null
}
request
{
"automatic_payment_methods": {
"enabled": "true"
},
"amount": "1099",
"currency": "usd"
}
I will have lunch and contact you later
What are you exactly trying to accomplish? If you're trying to process card payment method types, you would want to start from this: https://docs.stripe.com/payments/accept-a-payment?platform=web&ui=elements guide. Express Checkout Elements is for wallet payment methods only
So you've created the payment intent, and collected the payment details. Now, you need to confirm the payment intent: https://docs.stripe.com/payments/accept-a-payment?platform=web&ui=elements#web-submit-payment
Hi,
While creating a new individual bank account from latest iphone 15 verion 17.5, the API successes but in stripe dashboard connect account, external account is not created.
Do I or API team needs to update anything to make it work?
@opal ore looks like you're in the wrong place, this thread is for someone else's question.
- If you have your own thread, please chat there.
- If you don't have your own thread, use one of the buttons in https://discord.com/channels/841573134531821608/842637025524842496 to get help.
- Note: we don't reopen closed threads.
Posting inappropriate messages in other people's threads is against the rules. No worries if this was just an honest mistake, but if you violate the rules multiple times you will be removed from this server.
@fossil scaffold hi, i'm back , I create a Express Checkout Element, and it open the card payment method.
I want to test Express Checkout Element
How can I reproduce this issue? Can you share exact steps for me?
It happens after you click on Link > input the card details?
change a Card?
Yes
I'm also attempting to reporduce this on my end, hang tight
I change a china card with China address, Still this question
4000 0015 6000 0002
US address, and US Card Still this question
4242424242424242
Is this the same problem on your end ?\
I am try to test again
still in processing...
It's also happen in Stripe Doc https://docs.stripe.com/elements/express-checkout-element/accept-a-payment
Is it a network issue on my end?
Potentially, your page broke on me
I get 404 Page Not Found
Are you still here? @frigid tangle did you see my latest message?
My website?
ye
I change My website to public server in USA
Wait a moment, I'll configure the store
This all works on my end in my test integartion usign Express Checkout Element
Sure!
but it not work, I can't continue to next debug
Can you ensure that you do not have any extensions that may be blocking things for you?
So it's working for you now?
r: Unhandled expressCheckout Element confirm event. Make sure to register a confirm handler.
I'm looking for a document to "register a confirm handler"
Hi @frigid tangle I'm taking over this thread
Have you registered a confirm listener? https://docs.stripe.com/elements/express-checkout-element/accept-a-payment#submit-the-payment
i.e., expressCheckoutElement.on('confirm', async (event) => {
oh, it's useful,
By the way, can we obtain the shipping address filled in by the customer on the strip through this callback
https://docs.stripe.com/js/elements_object/express_checkout_element_shippingaddresschange_event yes you can, but it's a different event
ok, let me have a try