#mandalorianiv_error

1 messages ¡ Page 1 of 1 (latest)

daring pumiceBOT
#

👋 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.

vestal bridge
#

Can you share an example failing payment / request ID?

thick wind
#

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

vestal bridge
#

Can you share more about your integration, how are you collecting these address/card details?

#

Is this error in an API request?

thick wind
#

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

vestal bridge
#

Using the payment sheet / mobile payment element?

thick wind
#

I already checked the logs

#

which info do you need?

#

I'm using mobile payment element

#

natively

vestal bridge
#

The failed request ID or payment intent ID

thick wind
#

is this secure to share?

vestal bridge
#

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.

thick wind
#

pi_3Pfi31Gyie2OodUx1NgM5YSS

vestal bridge
#

Ohhh

#

I was looking at the the wrong way

#

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

thick wind
#

yes we just found out