#hwihwi_docs
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/1229724594748002336
๐ Have more to share? Add more details, code, screenshots, videos, etc. below.
๐ happy to help
if you're creating direct charges you won't be able to see the logs on your account even if you use the Stripe API
Direct charges mean that the "charge" is created on the connected account
and you would have to look at the logs of the Connected account to be able to see it
as for receiving webhooks
you need to configure a Connect webhook endpoint https://docs.stripe.com/connect/webhooks
Hi @fierce star
thanks for your reply
let me provide you more details:
here is our example checkout page:
Checkout site url: https://sg.sicpama.com/?token=KQSy19NnjXCNlvbUv7KMz
- Continue as Guest
- Select first menu item (Laksa)
- Click Order (bottom button)
- Click Checkout
- Then you will see the Checkout form
We are using ReactJs (ExpressCheckoutElement) and NodeJS with Stripe
For this flow, if customer pay on our platform, our NodeJS server can receive the webhook event from Stripe (of course we already configured and coded for it).
My concern here is if the customer tap to pay via Stripe dashboard android app, can we receive the webhook events same way as if they pay via our reactjs app?
yes
if you've setup the webhook endpoint to listen to Connect events then no matter where the request is coming from (API/dashboard etc.)
you will receive the event
even if you're not the initiator of the request
Thanks @fierce star
I also would like to ask about
application_fee_amount
https://docs.stripe.com/api/payment_intents/create#create_payment_intent-application_fee_amount
If we create a payment in NodeJS code, we can configure it via this parameter, but if a payment is created in Stripe dashboard app, how/can we configure it?
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
I'm not sure, that's something to ask https://support.stripe.com/?contact=true about. We can help you here with your API integration
Find help and support for Stripe. Our support site provides answers on all types of situations, including account information, charges and refunds, and subscriptions information. Get your questions answered and find international support for Stripe.
I got it, thank you