#aidan-sunbury_unexpected

1 messages ¡ Page 1 of 1 (latest)

timid timberBOT
visual stagBOT
#

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.

timid timberBOT
#

👋 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/1258128821530656938

📝 Have more to share? Add details, code, screenshots, videos, etc. below.

earnest niche
sleek badge
#

Do you see anything in the developer tools in the browser when that button is selected?

#

Any errors or warnings?

earnest niche
#

let me check

#

The "show card number" does not even display if I pass in random strings for the card_id, nonce, and key, which leads me to believe that the values I am passing in which cause it to display are likely correct

#

I'm not sure why it is saying the key was not created by createEphemeralKeyNonce. This is the code I used to generate it

const stripe = await loadStripe(env.VITE_STRIPE_PUBLISHABLE_KEY, {
        stripeAccount: "acct_1PW4lYBUzEFsx1pt",
});
console.log("stripe loaded");
const nonce = await stripe.createEphemeralKeyNonce({
        issuingCard: "ic_1PXpkzBUzEFsx1ptOxaRkVxs",
});
sleek badge
#

I don't think you can really make that assumption by passing in random strings. The component can still display regular non-sensitive data in the embeded component without using an ephemeral key, so it makes sense that passing in random data would still result in the componenet displaying non-sensitive data.

Something is going wrong in the code you're using to get the ephemeral key and pass it back to the form. I would review the steps in this guide again and try to step through your code to see why the key isn't being created and passed around correctly: https://docs.stripe.com/issuing/connect/embedded-components#sensitive-data-display

Use prebuilt UI components to embed Issuing card management into your website.

earnest niche
timid timberBOT
earnest niche
#

Is there a possibility that the ephemeral key is valid but does not match the nonce / cardId?

sleek badge
#

Most likely, yes

#

We don't have a lot of context on beta features/products, so generally I would send these questions to support, but I had a little extra time and wanted to try to be helpful. Hopefully you're oriented in the right direction now though.

earnest niche
#

Where should I go if I am still having issues with the beta components?

sleek badge
#

You can write into support, who will escalate your question to the product team that created the beta: https://support.stripe.com/contact

earnest niche
#

thanks