290 questions
0 votes
0 answers
65 views
Omnipay Integration Error for Paypal in a Laravel application
I'm integrating Paypal with my system, but I'm getting this error: [2024-12-05 14:45:32] local.INFO: PayPal response: {"name":"AUTHENTICATION_FAILURE","message":"...
1 vote
0 answers
54 views
Omnipay Paypal php issue - adding multiple items to checkout
I'd like to be able to pass multiple items with their details through an associative array as shown in the following code: <?php require_once 'config.php'; if (isset($_POST['submit'])) { try {...
1 vote
2 answers
76 views
How to get card details by cardReference Omnipay
How do I get card details later using card reference in unoapp-dev/omnipay-moneris $card = $this->gateway->createCard(['card' => $card])->send(); $ref = $card->getCardReference(); ...
0 votes
1 answer
33 views
Omnipay Alipay (Global) send() method is undefined
In Omnipay Alipay (Global), send() method is not working as expected. $response = $gateway->completePurchase($params)->**send()**; I received error message like this, Call to a member function ...
0 votes
1 answer
548 views
How to correctly us OmniPay PayPal Rest
I am trying to use OmniPay PayPal (REST), but I a facing several problems so I would like to ask: Is it still maintained ? https://github.com/thephpleague/omnipay-paypal In PHP file docs there is ...
0 votes
0 answers
149 views
Omnipay Stripe payment validation error with default example
According to the documentation, this is the example code I used to make the payment. $paymentMethod = $_POST['paymentMethodId']; $response = $gateway->authorize([ 'amount' =&...
1 vote
1 answer
467 views
Accept PayPal payment using only credit card with Omnipay (PHP)
I integrated OmniPay in my project few days ago, and I wondered if there is any option coming with it to actually enable credit card payments. https://github.com/thephpleague/omnipay I want to ...
0 votes
0 answers
126 views
omnipay/paypal and notifyUrl issue
Dear stackoverflow community, Recently PayPal contacted me to upgrade my 'old-style' CodeIgniter e-commerce cart (an old standard paypal gateway with a simple form to related paypal endpoint) to a ...
1 vote
0 answers
139 views
Omnipay Autentication error inside laravel
I'm using Omnipay Paypal Rest api for Laravel and getting this: "Authentication failed due to invalid authentication credentials or a missing Authorization header." here is my code : public ...
0 votes
0 answers
291 views
What values can we send to Stripe using Omnipay
I have two questions One: What values can we send to Stripe using Omnipay authorize(), example below is only sending amount and description $response = $gateway->authorize([ 'amount' ...
1 vote
0 answers
242 views
Omnipay how to handle notification webhooks from the payment gateways
I am working on a payment gateway driver for thephpleague/Omnipay. I am really struggling to implement a payment gateway driver that is off-site (i.e redirects the user to a payment provider page to ...
0 votes
1 answer
347 views
Omnipay Paypal Rest - Whats is the final complete payment state?
I need to know what is the paypal payment completed state of rest api. I am doing some tests with the api. Is it "approved" or "completed"? I am using omnipay, using this code: $...
0 votes
1 answer
289 views
Class '\Omnipay\YooKassa\Gateway' not found
i have added LIB yookassa to laravel/vendor/omnipay/yookassa, but after call $gateway = Omnipay::create('YooKassa'); it was error Class '\Omnipay\YooKassa\Gateway' not found The main composer.json (...
0 votes
1 answer
279 views
Unavailability of package razorpay/omnipay-razorpay
My composer.json file is as follows: { "name": "razorpay/razorpay", "description": "Razorpay PHP Client Library", "keywords": ["...
3 votes
4 answers
1k views
SagePa 3DS2 3377 : The ACS has provided an Erro message. CReq validation failure from thephpleague/omnipay-sagepay
I'm using thephpleague/omnipay-sagepay https://github.com/thephpleague/omnipay-sagepay After receiving response from the 3DS Notification, I am running the following code: $gateway = $this->...