#jeff-preston_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/1395086855505973268
๐ Have more to share? Add more details, code, screenshots, videos, etc. below.
Do you have a request ID you can share?
oh - one moment
[digging through logs]
ip address: 89.147.101.158
request id:
441f707c-35a1-4e19-8785-2aa22489c8ec
{"iap_client_request_id":"441f707c-35a1-4e19-8785-2aa22489c8ec","iap_client_store_product":{"productId":"com.zynga.5004410.new_pile_of_hay","name":"New Pile Of Hay","description":"A New Pile of Hay","displayPrice":"$0.99","currency":"USD","priceAmount":0.99},"forced_zip_code":false,"forced_review":false,"forced_email":false},"client_id":3,"vendors":["stripe","braintree","free"],"language":null,"token":null,"locale":"en_US","localized_currency":"USD","country_of_purchase":"US"}"} response={"webServiceMethod":"IapInitializePurchaseWebService.initializePurchase","status":200,"duration":848,"contentType":"application/json","headers":{"Date":"Wed, 16 Jul 2025 16:37:34 GMT","Content-Type":"application/json"},"payload":"{"screen_result":{"success":true,"error":""},"availability_result":{"success":true,"error":""},"location_result":{"success":true,"error":""},"custom_attributes_result":{"success":true,"error":""},"auth_result":{"success":true,"error":"","address_required":false,"zip_required":false,"email_required":false},"product_url":null,"player_data":{"saved_cards":[],"receipt_email":"jeff.s.preston@gmail.com"},"product_pricing":{"product_id":"com.zynga.5004410.new_pile_of_hay","currency":"USD","price":"$0.90","tax":"$0.09","tax_rate":0.100000,"total":"$0.99","price_amount":0.90,"tax_amount":0.09,"total_amount":0.99,"description":"Price includes 10% KR tax","charge_amount":0.99,"stripe_amount":99,"country_code":"KR","region":"11"},"vendors":[{"name":"BRAINTREE","preferred":false,"metadata":{"environment":"sandbox"}
^ screenshots
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
Looks like the currency is set to usd, it needs to be set to krw I believe [0].
i just retried those
one moment
,"client_id":3,"vendors":["stripe","braintree","free"],"language":null,"token":null,"locale":"ms_MY","localized_currency":"KRW","country_of_purchase":"KR"}"}
request id: f536cf8d-7a18-48d6-a05a-c244b9bf355f
Another one: used the test card
2756b4b6-5142-4927-a0e0-2f0eaa55c0f9
Hi, taking over as my teammate needs to step away. Let me catch up.
thank you
I need a request ID for the latest call. Here's how you can find a request ID: https://support.stripe.com/questions/finding-the-id-for-an-api-request
When you created the PaymentIntent, https://dashboard.stripe.com/test/logs/req_r8yFp13YlEJyLP you passed
payment_method_types: {
0: "card",
},
This means that you only allow card payment method so it's expected that you do not see other payment method types. You can add payment_method_types: ['naver_pay'], as a next step on top of the card. Or, you can enable the payment method on your Dashboard and then use automatic payment methods: https://docs.stripe.com/connect/dynamic-payment-methods
got it! ty => we'll follow this up!