#shy_unexpected
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/1245468199311376445
๐ Have more to share? Add more details, code, screenshots, videos, etc. below.
Hello
Can you clarify a bit -- what do you mean by "you see the purchase in stripe logs"?
If you can provide a specific example ID that would help too
That is just an account creation request?
only mods can see this chat right?
๐ What you can share safely
This is a public server. Anyone can see the messages posted here, so you need to be careful when sharing certain information.
๐ Not safe to share
Do not share anything sensitive or privileged on Discord, including the following:
- ๐ Secret API keys (most Stripe secret API keys start with
sk_,rk_, orek_) - ๐ Secrets (examples include Stripe's client secrets, which contain
_secret_, and Stripe's webhook signing secrets, which start withwhsec_) - ๐ Passwords, keys, or other login/authentication details
- ๐ Information about non-public features or functionality
If you don't want something public, don't share it here.
โ Safe to share
Stripe object IDs are safe to share in public, and are often required to help us investigate and debug issues. Some examples of IDs you can share safely are:
- โ
Customer IDs (
cus_) - โ
Checkout Session IDs (
cs_) - โ
Subscription IDs (
sub_) - โ
Invoice IDs (
in_) - โ
Setup Intent IDs (
seti_) - โ
Payment Intent IDs (
pi_) - โ
Charge IDs (
ch_andpy_) - โ
Request IDs (
req_)
This list isn't comprehensive; there are too many Stripe object IDs and prefixes to list that are safe to share publicly.
If in doubt, ask someone on this server with the Stripe Staff role if a particular piece of information is safe to share before you share it.
That request ID isn't really relevant here though
yeah one moment
That said, are you trying to use Connect?
so basically
Like is the confusion that funds aren't getting transferred to your Connected Account(s)?
i have this registration form i coded in which im struggling to do because the client will not let me access the server so I have to do server and client sided code myself
and I have it linked up to my stripe rn for testing
and its returning that the payment is sucessful
Pause
but theres nothing going through just a log that comes in
What does that mean?
and its returning that the payment is sucessful
What is "returning that the payment is successful"?
I can share my code in a moment im just trying to get the proper log so im going to fill the form rq
and what it returns
ok
req_QxntlgsZV3SJke
does this ID help at all
or is it the same thing? sorta
sorry this is all new to me
That is a Token request
So yeah that is when you collect card details
But you would need a separate server-side request to actually create a Charge
What you want to do instead here is create a PaymentIntent server-side
ah so essentially im only getting the token im not sending the charge?
Then you pass the PaymentIntent's client_secret back to your client and you call confirmCardPayment()
That will both collect the card details and create a Charge
https://docs.stripe.com/api/payment_intents/create is the method for creating a PaymentIntent
And https://docs.stripe.com/js/payment_intents/confirm_card_payment is how you confirm it client-side using Stripe.JS
thank you so much
i was losing my mind over this
i have 1 more quick quesiton if you dont mind
Sure
actually nevermind I think the links u gave me solve it
is there anyway I can save this chat for a while or will it get closed?
It will get closed but you should be able to revisit it if you save the link
You can always post again if you have another question in the future
alright thank you so much where can I get the link for this chat