↧
Answer by daygloink for Executing Curl in PHP to do a Stripe subscription
I ran into the same issue. I wanted to use PHP's CURL functions instead of using the official stripe API because singletons make me nauseous.I wrote my own very simple Stripe class which utilizes their...
View ArticleExecuting Curl in PHP to do a Stripe subscription
The Stripe API allows for Curl calls to be made. For example, the command:curl https://api.stripe.com//v1/customers/cus_5ucsCmNxF3jsSY/subscriptions -u sk_test_REDACTED:returns the subscription of...
View Article