Hi,
I would like to create connected system in order to connect Stripe payment gateway.Please find attached image for my queries
Discussion posts and replies are publicly visible
Hi husaina0001,
In stripe documentation it mentions to use HTTP Basic Authentication as authentication method to your API calls even tho they provide you with API Key. I tried with basic auth and it worked
Authentication : Basic
UserName : "API KEY"
Password : #
(In Place of password use # symbol)
This is snippet from documentation
curl api.stripe.com/.../charges \ -u sk_test_4eC39HqLyjWDarjtT1zdp7dc: # The colon prevents curl from asking for a password
Thanks!