#balthius_paymentlink-queryparams

1 messages ¡ Page 1 of 1 (latest)

fallow obsidianBOT
#

👋 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/1387529659398488116

📝 Have more to share? Add more details, code, screenshots, videos, etc. below.

Below are links to other discussions we've had with you in the past week in case you want to review that information. If your question is related to one of these previous discussions, please provide a comprehensive summary of the current state and what you need help with now. We help many users simultaneously, so a summary allows us to resolve your issue as soon as possible.

meager tapir
#

Hello

#

Do you have a Checkout Session ID that you can share for when you tested this?

#

Also can you clarify... do you actually see those query params in the URL you are visiting?

visual crystal
#

cs_test_a11Kh2DdC0m92aOoipbxj7UHWJ4zKvdFTxbY5puqPRA9VvqFai8h9dqirf

When I am manually entering them, absolutely.

When I am generating them and then passing as a form action

  • they are able to log out just prior to sending
  • can see them being captured by google analytics
    -they do NOT cross that threshold.

If this is a me problem, fair enough; I was curious if there is any reason that Stripe would filter out URL params, either due to this being a test checkout, me needing to whitelist the domain etc.

meager tapir
#

No reason we would filter them out as far as I know

#

You don't have a method set

#

I think you want to specifically use a POST here to redirect... possible it defaults to GET and strips the URL params?

#

Hmm actually no never mind a GET should be fine here

#

Anywhere I can visit to reproduce?

fallow obsidianBOT
pseudo nymph
#

balthius_paymentlink-queryparams

visual crystal
#

Ha, I literally just got it working, pulled the whole thing out, in here

submitButton.addEventListener('click', function (e)
{
e.preventDefault();
window.location.assign(pay_url);
});

pseudo nymph
#

so it's working now? Curious if you have a page that has both versions, happy to look and compare. Maybe some URL encoding issue for example

visual crystal
#

Yes, it is!

Staging version here, I don't have the first one set up at the moment and where it's built is already a little touchy, but I appreciate the offer