#brkbrkn
1 messages · Page 1 of 1 (latest)
hello! Can you share your account id so that I can take a closer look at how your integration works? You can find your account id by logging in to https://dashboard.stripe.com/settings/account. It'll be in the upper right hand corner and looks like acct_123
my account id : acct_1G3L5bLJbLq7rUzy
is your user making payment in test mode or live mode?
test mode
you've setup your webhooks ending with /buyCredit in livemode
the test mode payment will generate test mode webhooks and will go to your test mode webhook endpoint
and you haven't setup a testmode webhook with /buyCredit
https://prnt.sc/L13kSbmJW3jO It looks like it was sent successfully. but still no change on my server side. If you examine the codes I wrote, I am trying to pull data such as user_domain, price_data and product_data on buyCredit.
https://prnt.sc/33HeabFbaftK i create checkout session like this and add some data such as userdomain, productname, price etc. in checkoutNewProduct side
https://prnt.sc/gQx7bqGvGs4F and i tried to parse these datas in buyCredit side
are you receiving the webhook event in that section of code? have you tried adding logging to check if you are?
i dont know how to do it. i am just copy paste and trying millions of different codes
since your server is returning a 200 http response code, your server should be successfully receiving the webhook events. As to why there's "no change" on your server side - i assume you're referring to why the data is not being logged to your database?