So as the title says, I have a problem proceeding the order, I just get this error:
GET https://website.com/public/intent 500 (Internal Server Error)
That's how I implemented stripe:
<script src="https://js.stripe.com/v3/"></script>
<script>
// Stripe stuff
var stripe = Stripe('pk_test_key');
var elements = stripe.elements();</script>
Into logs I get this error:
"This API call cannot be made with a publishable API key. Please use a secret API key. You can find a list of your API keys at https://dashboard.stripe.com/account/apikeys."
When I'm trying to use the secret key it tells me to use the public key and vice versa.
Can someone help me out ?