#jasonhuo_api

1 messages ¡ Page 1 of 1 (latest)

misty wharfBOT
#

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

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

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.

mossy pivot
#

Hello there

#

You are using PaymentSheet here?

willow cove
#

No

mossy pivot
willow cove
#

Yes

mossy pivot
#

Gotcha, let me check if you can force postal code here.

willow cove
#

OK thank.

willow cove
#

Let me check the doc

misty wharfBOT
willow cove
#

Yes, I could get the billing contact from Apple, and how can I pass the information to Stripe?

ornate crow
#

That will tell us to collect those details when showing the sheet and it should automatically get passed in when the payment is submitted

willow cove
#

and then Stripe can get the billing information directly from the payment request?

ornate crow
#

That is my understanding, I am double checking with colleagues

willow cove
#

OK, let me know if you confirm

#

I checked the app. The sheet has collected the billing information

ornate crow
#

Nice! Had just confirmed this on our side

#

We don't have a doc that demonstrates this, but the typical way I am seeing to force collection with us is:

paymentRequest.requiredBillingContactFields = Set([.postalAddress])```
willow cove
#

I think we has collected the billing information

#

But the Stripe transaction still does not have the billing information

ornate crow
#

Can you send me the ID of your test transaction? I can take a look

willow cove
#

ch_3R89DkA1KmcXQec817xZ93lz,ch_3R89DcA1KmcXQec81B2fjSrC,ch_3R89BSA1KmcXQec80IHB126W

ornate crow
#

Ah those are older charges, I thought that you meant that with this new param the details weren't being passed on. I will see if I can find more on this behavior

#

The PM for that first charge was created with the Stripe.js payment request button, rather than an iOS app. Can see if there is a similar setting for the PRB. Checking the other charges

willow cove
#

Let me test it on our website

#

In website, it only show the card information but no billing information. Does it mean billing information will miss?

ornate crow
#

Likely, if you actually submit the payment we should show the details that are passed to us properly. Is it possible for you to add a billing address in the dropdown when selecting your card?

willow cove
#

No, for the inplementation in website, we cannot add a billing address

ornate crow
willow cove
#

OK, I did a test in iOS and website. I think we found the cause. In website. we did not collect the billing information from the sheet, which result in missing zipcode.

#

I will follow the doc you provided to collect the billing information. Thanks for your help.