stripe and titanium

You must Login before you can answer or comment on any questions.

How can I intergrate the stripe api for payment processing to allow people to pay for services through my app. Stripe.com

2 Answers

As you can see there is a web api:

curl https://api.stripe.com/v1/charges \
   -u vtUQeOtUnYr7PGCLQ96Ul4zqpDUO4sOE: \
   -d amount=400 \
   -d currency=usd \
   -d "description=Charge for test@example.com" \
   -d "card[number]=4242424242424242" \
   -d "card[exp_month]=12" \
   -d "card[exp_year]=2012" \
   -d "card[cvc]=123"
Here is a JS-code.

Good Luck!

Rainer

how do I make sure the information is secured using https.

Your Answer

Think you can help? Login to answer this question!