I have created a Stripe account. I don't have a company or something like that - just doing a web API for educational purposes. How can I get Stripe Publishable and Secret keys? How can I use Stripe for educational purposes without using real information?
CodePudding user response:
you have the possibility to use test-keys. The publishable test key should look like this pk_test_51xxxx...
and you can find it here. You can make sure you are in test_mode by checking the switch in the right top side (on PC, on mobile it might differ)
also you can take a look at this Stripe test live modes it might help you.