Omnipay

Help for integrating the Laravel package
Forum rules
Always add your Laravel, Aimeos and PHP version as well as your environment (Linux/Mac/Win)
Spam and unrelated posts will be removed immediately!
User avatar
harshithvemula
Posts: 33
Joined: 19 Jul 2020, 16:27

Omnipay

Post by harshithvemula » 05 Mar 2021, 16:17

I have integrated instamojo payment gateway and it needs certain parameters like name, phone, email , redirect url and i would like to take name, phone, email from the checkout form. How to do this ? Also how to set the redirect url ?

User avatar
aimeos
Administrator
Posts: 7908
Joined: 01 Jan 1970, 00:00

Re: Omnipay

Post by aimeos » 08 Mar 2021, 09:12

You can select "address: yes" in the admin backend -> Service panel -> your payment option -> config table on the right side. This will pass the address from the order to the Omnipay driver. The URL for the checkout confirmation page is automatically added:
- https://github.com/aimeoscom/ai-payment ... #L719-L726
- https://github.com/aimeoscom/ai-payment ... y.php#L692
- https://github.com/aimeoscom/ai-payment ... y.php#L859
Professional support and custom implementation are available at Aimeos.com
If you like Aimeos, Image give us a star

User avatar
harshithvemula
Posts: 33
Joined: 19 Jul 2020, 16:27

Re: Omnipay

Post by harshithvemula » 08 Mar 2021, 17:20

https://github.com/gentor/omnipay-instamojo

I am using the above package and in the admin panel the address field in the payment gateway config is yes. But still my payment gateway is not able to retrieve name,phone, email and redirect url

User avatar
aimeos
Administrator
Posts: 7908
Joined: 01 Jan 1970, 00:00

Re: Omnipay

Post by aimeos » 09 Mar 2021, 10:49

The Instamojo driver doesn't fully comply to the Omnipay standards and requires to add the customer details as parameters instead of inside a card object:
https://github.com/gentor/omnipay-insta ... hp#L23-L25

The correct way is:
https://github.com/academe/OmniPay-Payo ... #L266-L348
Professional support and custom implementation are available at Aimeos.com
If you like Aimeos, Image give us a star

Post Reply