Payment Options in Mobile With Prestashop web service - php

I want to make mobile app for prestashop 1.7 e-commerce site, for that I refereed the process for web service provided by Prestashop.
I reached at how to insert orders via web service, but I didn't get understand how to proceed with checkout process through web service.
Can any one tell me that how to get a payment options and checkout for payment through web service of prestashop?
Thank you in advance.

The payment options in PrestaShop are different. All of them have a separate logic of working and processing of payment.
All the checkout steps in PrestaShop can be handled using the web-services in PrestaShop, but to handle Payment Methods is a very time-consuming task, moreover, you can never test the app with all the payment methods that exist for PrestaShop.
So to solve this problem, we recommend that you show the payment steps inside the mobile app as web view as the steps are shown in PrestaShop store's mobile web-store.
You can take a reference from the following App (it currently support PS 1.6 only):
https://play.google.com/store/apps/details?id=com.velsof.prestashopgenericapp&hl=en

Related

Can I develop integration to a payment provider in Magento 1.X?

In order to connect an eCommerce website which is built in Magento 1.X to a payment provider, I know I can:
Select from existing extension (plugin) that will connect me to well known payment providers, as available in this marketplace.
Add payment method that from existing list that defined in Magento framework, as described here
but I am looking for a 3rd option: to integrate a website that is implemented in Magento 1.X a to a payment provider (PSP) that is not part of the predefined ones and has no ready-made extension that I only need to customize.
Questions:
Can I integrate it by coding it (in php) to my website?
Does Magento allow it?
There is no restriction, that does not allow you to implement your own payment service from Magento. You can develop your own module to connect the PSP's API. Therefor, the PSP must have an API.
Note, that payments are one of the most sensitive features in eCommerce which requires indepth-knowledge on both Magento and SPS-side. Hardening required :-)
Maybe it would be easier to switch the payment gateway to a provider which already has a Magento solution?

Magento 2 Braintree Card Payment integrate with react native app

I try to use Braintree Card Payment extension from Magento 2, but I can't find a solution. If I use card payment from magento web theme, it works fine, but if I make endpoint requests from Postman I receive the following error message:
Transaction has been declined. Please try again later.
I use magento 2 endpoinds:
/rest/V1/carts/mine/shipping-information and /rest/V1/carts/mine/payment-information
I read that if you want to integrate braintree card payment for native mobile app (frontend), you need to create a custom module programatically on backend.
Someone else has done this and can help me with an implementation or some steps to follow?

How can i get billing details in step 6 in checkout page opencart 2

I'm manually integrating cyber-source payment gateway with open-cart, because i think there is no options in open-cart that i can manage via admin panel. I know there are some extension available in admin panel, but i didn't found any simple and cyber-source payment gateway integration. So I have done payment integration on flat php now i need to configure with open-cart. For this task i need billing address in checkout page last tab. I have searched about this but couldn't found any better and easy solution. Can any one guide me about this.
Thanks

what are webhooks? what is its use?how can i use it in my woocommerce wordpress site?

I would like to know the following things about the web-hook,
1. Actually what are web-hooks and what is its functionality?
2. I have a woo-commerce word-press site, how can i make use of the web-hook in my android app for my woocommerce sie?
3. For integrating web-hooks in android application which have a woo-commerce site what all things i need to do?
Can anyone help me please..
Thanks in advance..
From WooThemes WebHooks Documentation,
What are Webhooks?
A Webhook is essentially an event
notification sent to a URL of your choosing. Users can configure them
to cause events on one site to invoke behaviour on another.
Webhooks are therefore very useful for integrating with third party
services and other external API that support them.
The site goes on to explain how to manage web hooks and gives some examples that could be useful.

is there a multiple payment providers (paypal, ogone, ...) php module for use in a web app?

We are building an ecommerce app where we want our users to pick out a (any provider we can make compatible with our app) payment provider. Up to today, we only support paypal and we have implemented this rather manually.
We are looking for some sort of a module (free or commercial) to easily plugin in more payment providers to let customers accept payments through them. Our customers would use this to accept payments for sales in their web shops.
Any ideas on such "modules"?
I know of the Zend_Payment module but that's not updated anymore or isn't out yet at all.
We run PHP in the Zend Framework if that matters.
Try this one
http://phpclasses.100pour100net.com/package/5213-PHP-Accept-payments-with-Paypal-Authorize-net-and-2CO.html
It process several major payment gateways.
If you want to be able to offer multiple gateways you should look at http://Spreedlycore.com It's not PHP (Ruby) but essentially is a single API that connects to around 30 gateways.
I've recently been struggling with the same issue and finally decided to make it on my own. In result I've done a standalone Zend module with pluggable payment gateway methods. This solution is described here.
There is extensive developer documentation from many payment providers to assist in writing scripts to handle transaction requests. Usually these will involve sending some request to your payment gateway provider and providing a callback url where update information about the given transaction can be sent. It should not be difficult to develop an appropriate module for the occasion in Zend and a controllerAction to handle the callback functionality.

Categories