#kano_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/1268699931724615753
๐ Have more to share? Add more details, code, screenshots, videos, etc. below.
Hello
What field are you referring to? Can you share a screenshot?
Hmm I don't think that's a Stripe input field
This might be something your code is adding separately
I'd recommend double checking your code
oh i see, it appears to be the link-authentication-element
...
const paymentElement = elements.create('payment')
paymentElement.mount('#payment-element')
const linkAuthenticationElement = elements.create('linkAuthentication')
linkAuthenticationElement.mount('#link-authentication-element')
HTML:
<div id="payment-element"></div>
<div id="link-authentication-element"></div>
do i need link-authentication-element ? what does it do exactly? i got this from your example code in VueJS integration. (https://github.com/stripe-samples/accept-a-payment/blob/main/payment-element/client/vue-cva/src/components/SrCheckoutForm.vue)
Ah whoops I've not usually seen folks use link authentication element at the bottom ๐
It is this:
https://docs.stripe.com/payments/elements/link-authentication-element
Use the Link Authentication Element to create a single email input field for both email address collection and Link authentication.
More docs on what link is: https://docs.stripe.com/payments/link
You don't have to use Link Authentication Element to accept link.. We offer different integration options with PaymentElement: https://docs.stripe.com/payments/link/payment-element-link
got it. thank you for clarifying!
Happy to help! ๐ Is there anything else I can help with?