POSTing/Sending Credit Card information to Magento from different app
Hey guys, Is it possible to POST CC informat开发者_运维百科ion to Magento from another store to magento so it can process the payment? In other words, are there any existing plugins or core functionality that allows for that? Thanks!
Newer versions of Magento 1.5+ have the ability to add items to the cart via the API now, not exactly what your looking for but will at least put the end user in the cart and a product in their cart to begin checking out...
Release Notes - Magento 1.5.0.0-beta1 (January 13, 2011)
Implemented SOAP Api calls for shopping cart
http://www.magentocommerce.com/download/release_notes
This is definitely feasible, but not an existing function. If you refer to my answer here, you'll see the skeleton of how to achieve this. You would create a controller that accepts the POST data and populates a Onepage model and saves it to create an Order. That example is trivially easier since it's for Free Virtual products, so billing and shipping info and cost are not required, but you get the idea.
It would require a lot of validation and error handling, not to mention security and ensuring that you maintain PCI compliance.
No. You'd have to hack and/or build something up special
精彩评论