#nourmansur
1 messages · Page 1 of 1 (latest)
Can you explain more what exactly is not working like you expect?
Using Elements, you can certainly collect payment details in your own application securely
Some payment methods require redirecting to a customer authentication portal
Redirecting to Stripe specifically sounds like you might be using Checkout, currently, rather than elements
Can you explain more about what you're currently doing?
So what i am doing right now , i have a form with credit card info ( ccnumber, name, exp date , etc... ) then i send it to paypal pro manager with the amount so i can deduct directly from the card, all this happens on the server, because i already have a form that collects these info.
Now i want to switch to stripe because we are using it on other projects.
Ah, you want to transmit raw card details specifically?
You should make sure you read about PCI compliance implications here: https://stripe.com/docs/security/guide#validating-pci-compliance under the "direct api" tab
yes
Yes we are PCI compliant and can collect cards from users
In that case, you can send those details to create card payment methods:
https://stripe.com/docs/api/payment_methods/create#create_payment_method-card-exp_month
Or use them directly in payment requests
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
You'll need to work with our support team to validate your PCI compliance documentation to allow you to transact this way in live mode