#tommy_holmes-stripe-pricing
1 messages · Page 1 of 1 (latest)
Are you following this guide: https://stripe.com/docs/payments/checkout/pricing-table#embed ?
yup the snippet worked in CodePens just not in a local html file
Where are you seeing the error? Is it a browser console error? Is there a URL associated with it that I can look at?
in the browser I get the "Something went wrong" and the console is giving warnings about Sentry?
Are other html files working for you locally?
other html files don't seem to either I made an empty one with only the table and it still had this issue
You're saying that other HTML files aren't loading either?
yeah I made an empty file and only put the price table into the body and still got the same issue - this is with the code generated from my own Test Table I made in the dashboard
Ah, so you need a server. It doesn't look like you have anything serving your code, such that your browser can access it.
What are you using for your backend language?
ah okay - Im using Python
I was just gonna try hook it up with Zaiper to a third party contacts manager - haven't thought too much on a framework yet ngl ahah
Ah, okay. I'm not going to be able to assist much then if you don't already know how to serve the files in a way that your browser can access them. I'd recommend following one of the numerous tutorials for Flask. It's pretty straight-forward and easy to use. Here's their quickstart guide: https://flask.palletsprojects.com/en/2.2.x/quickstart/