PWA Studio (Venia)
Technical manual for MultiSafepay's plugin.
Prerequisites
- You will need a MultiSafepay account .
- To support GraphQL queries, install the MultiSafepay Magento 2 GraphQL plugin .
- You must also meet Magento's requirements for PWA Studio (Venia). See Magento ā Prerequisites .
Payment methods
By default, this plugin supports all payment methods supported by our Magento 2 plugin out of the box, except:
- Alipay+ ā¢ Partner
- Amazon Pay
- Direct Debit
- E-invoicing
- MyBank
- Pay After Delivery
- Pay After Delivery Installments
- Request To Pay
- WeChat Pay
You can integrate these payment methods yourself.
See MultiSafepay GitHub ā PWA Studio components .
Installation
-
Install the MultiSafepay plugin for supporting
GraphQL
queries, which includes theMultiSafepay Core
,Frontend
, andAdminhtml
plugins. For instructions, see MultiSafepay GitHub ā Magento 2 GraphQL. -
Configure the MultiSafepay payment methods and API keys in the Magento admin panel.
-
To configure URL redirects for your success and cancellation pages, go to Stores > Configuration > MultiSafepay > General Settings > Advanced Settings > Use custom return urls
-
For the Custom redirect URL after canceling the payment, we suggest using the next link: <your_pwa_url>/cart?maskedId={{quote.masked_id}}&multisafepayRestore=true
-
For the Custom "Success page" url, we suggest using the next link: <your_pwa_url>/multisafepay/checkout/success/{{order.increment_id}}/maskedId/{{quote.masked_id}}
-
Setup a PWA Studio storefront following the steps in this installation guide.
4.1. Go to the extension folder (or create the directory if this one doesn't exist):
cd your_project/packages/extensions
4.2. Create MultiSafepay extension folder:
mkdir multisafepay-payment-integration
4.3. Clone all extension files from this repository in multisafepay-payment-integration folder.
git clone https://github.com/MultiSafepay/pwastudio-multisafepay-payment-integration.git ./multisafepay-payment-integration
4.4.If your application is based on a PWA Studio version below 12.X, switch to the proper branch. Backward compatibility is supported by these 3 branches:
git checkout compatibility-v9 git checkout compatibility-v10 git checkout compatibility-v11
4.5. Link extension in venia-concept package.json.
Go to the venia-concept folder and open package.json:cd your_project/
4.6. Add the next dependency:
"dependencies": { "@multisafepay/multisafepay-payment-integration": "link:./packages/extensions/multisafepay-payment-integration" },
4.7. Go back to the project root folder and execute next commands:
yarn install && yarn watch:venia
-
Explore the checkout in your Venia application:
Support
Contact MultiSafepay:
- Telephone: [email protected]
- To contact MultiSafepay, email [email protected]
Updated 9 months ago