#stripe_connect_platform-legacy-checkout
1 messages ยท Page 1 of 1 (latest)
k
๐
Stepping in as karbi has a bunch of folks at the moment.
Do you know if this is the Simple integration or the Custom integration?
Simple
What exactly is your question?
I think you mean do we have a button of our own that is clicked and opens stripe (custom) or is it your button?
What is Stripe saying when the white check appears?
that we called /v1/tokens and a card Token was created, that's all
OK, not that it submitted the form.
Ok, any advice on debugging that old checkout form? Is there anything we can add to assist us?
Are you sure you use the simple integration where you have pure HTML and it just posts?
Hold on. It is not us exactly, it is our connect customer. Let me confirm.
<div id="xxxxxxxx" align="center" style="" class="wcustomhtml"><script src="https://checkout.stripe.com/checkout.js"></script>
<form id="xxx" action="https://example.com/charge" method="POST">
<input name="referrer" type="hidden" value="">
<span class="wsite-button-inner">Subscribe Now</span>
</form>
The one that has a form like that but the button actual is a custom button so we have a line like this:
document.getElementById('xxxxxx).addEventListener('click', function(e){
});
var handler = StripeCheckout.configure({
ah so you use the Custom one
So really it boils down to what happens on that page, like they must get the token back in their callback and something is broken there and that's what you/they need to debug
But if the token is created, that is logged in Stripe and we should see that step logged yes?
but this happens before the Customer is created or the Subscription is created so I imagine it is in the event logs of the connected account but not anything on the Customer object (since it is failing prior to the Customer being created).
End customer says this:
Hi support,
After keying in the details and pressing on the pay button, a green tick appears and brings me back to subscription page.
That email was from Saturday, July 30, 2022 6:48 PM and I have the connected account and want to see if I can find anything that gives a clue to what happened
Question: Is there anything we can filter for in the connected accounts event logs to get a clue as to what might have happened? It is only a % of the time that his customers cannot pay.
You need to look for /v1/tokens calls basically to find their token creation (which happened since you see the green checkmark
and then whatever the code is on the client after that, or on the server after the form submit, that is what is erroring so you'd look for the tok_1234567 created and try to understand why it's not used
Sure!
koopajah...doing my best here
it seems like on our own account we have lots of filters
very helpful in looking for only /v1/tokens, right?
but on a connect account viewed in the dashboard we seem to not be able to filter like that.
Is that a bug or a feature?
Not all accounts have the same filters
under Developers > Logs
Ok, I have a few emails of customers this happened for so the standard account owner had to manually create an invoice. I cannot seem to filter sufficiently in his account to view /v1/tokens to find anything. Any suggestions?
Besides, yes, i'm trying to get him into our new app and start using the non-legacy checkout but customers who started that way don't want to switch
Working with our support team would be the best option in this case: https://support.stripe.com/contact
ok got it. thank you!