#cole-caccamise_api
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/1390368991037362322
đ Have more to share? Add more details, code, screenshots, videos, etc. below.
thank you
Are you passing in the same Stripe Account header when creating your ephemeralkeynonce?
Ah sorry you shared that request
And you aren't so that's the issue
See: https://stripe.com/docs/connect/authentication -- you are trying to create the Ephemeral Key on your Connected Account but the nonce was created on your platform
You need to create that nonce on the Connected Account as well
i thought it might be something like that.. but the nonce is created like this with stripe js:
// Use Stripe.js to create a nonce
const cardId = 'ic_1ITi6XKYfU8ZP6raDAXem8ql';
const nonceResult = await stripe.createEphemeralKeyNonce({
issuingCard: cardId,
});
const nonce = nonceResult.nonce;
the docs for this call don't show an account id option. i didn't see an API endpoint to create the nonce directly
You pass in the Connected Account ID when initializing Stripe.JS (depending on which method you are using)
ahhh didn't catch that thank you