#mandalorianiv_error
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/1265293102349025280
đ Have more to share? Add more details, code, screenshots, videos, etc. below.
Can you share an example failing payment / request ID?
it says this country id is not supported
Not sure how to fix this
I mean I can not make any update to my app
Can you share more about your integration, how are you collecting these address/card details?
Is this error in an API request?
I'm using flutter stripe sdk that is actually implements by react native sdk of yours
so I'm creating an intent with that sdk also the country code
Using the payment sheet / mobile payment element?
Please check your logs for erroring requests: https://dashboard.stripe.com/test/logs/
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
I already checked the logs
which info do you need?
I'm using mobile payment element
natively
The failed request ID or payment intent ID
is this secure to share?
I'm trying to test this too
as long as its just the ID like pi_1235 yes, IDs are safe to share. Nobody can do anything with them without your keys. Never share your secret key, even with Stripe.
pi_3Pfi31Gyie2OodUx1NgM5YSS
Ohhh
I was looking at the the wrong way
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
The issue is you're providing shipping: { address: { country: 'Hungary'}}
that shipping country needs to be HU like the billing details
Notice the error includes param: "shipping[address][country]",
This is telling you the problem is the shipping country, not the billing country
You need to revise your code getting the shipping address to set using the ISO 2-letter country code
yes we just found out