Questions tagged [omnipay]

Omnipay is a framework agnostic, multi-gateway payment processing library for PHP 5.3+

Omnipay is a payment processing library for PHP, based on ideas from .

292 questions
2
votes
1 answer

Getting PayPal Rest Errors in OmniPay

I am trying to force an error in the PayPal Rest API using Omnipay, however the data I am getting returned is just an empty array. The basics: $this->gateway =…
Alex McCabe
  • 1,852
  • 2
  • 20
  • 33
2
votes
1 answer

PayPal money transfer via OmniPay PHP

I want to transfer money between two PayPal accounts without forcing user to enter information as in Express checkout. Is there any way to do it via OmniPay? I am using this code for express checkout. $gateway = Omnipay::create('PayPal_Express'); …
Abraham
  • 101
  • 6
2
votes
1 answer

How to use Omnipay/Manual

I found omnipay/manual driver that should allow user to manually process the transaction, but don't find any instruction, tutorial etc.. So how can I use it to create, made paid, etc.. for a transaction? Both instruction and links to…
Luca C.
  • 11,714
  • 1
  • 86
  • 77
2
votes
0 answers

Sylius: configure of MultiSafepay

I trying to configure MultiSafepay in Sylius 0.14. When using omnipay_direct or omnipay_offsite in the config.yml I get this error (The payment details have been filled in: Name, Card number etc): The transactionId parameter is required Is the…
nilsM
  • 107
  • 8
2
votes
1 answer

Integrating payment gateway 2checkout using (omnipay payum and symfony)

I am trying to setup payumbundle with 2checkout and I cant seem to understand how to setup config.yml and then how to send information to 2checkout. Before this I have setup PayPal express checkout successfully with Payum and I am some what familiar…
Shairyar
  • 3,268
  • 7
  • 46
  • 86
2
votes
1 answer

Does the creditCard function exist in Omnipay PayPal Express? Or only in PayPal Pro?

This question is maybe similar to THIS and THIS but I'm not entirely sure. I've made a shopping cart that sends the product details and quantity/total amount to Paypal on checking out. I'm using Laravel 4 and the Omnipay Paypal plugin…
thomas jaunism
  • 805
  • 2
  • 10
  • 31
2
votes
2 answers

Integrating PayPal REST API into Laravel using Omnipay - The card parameter is required

I'm using L5 and want to integrate my PayPal purchases into that system. The sandbox is already set up and I can do all my payments using the real PayPal API package, but as I want to try to do it with Omnipay I'm struggling a bit: When I execute…
danielwinter
  • 331
  • 1
  • 2
  • 10
2
votes
2 answers

Method [create] is not supported by the gateway [paypal]

I followed thistutorial. I tried to integrate the paypal into my website. My purpose is to allow to user to send money to another user via a donation button using paypal. my configuration : return array( // The default gateway to…
Dev DOS
  • 1,018
  • 4
  • 18
  • 45
2
votes
0 answers

Using Omnipay for standard PayPal payments

As you know, PayPal Express and Pro methods not available for all counties. I'm wondering if there is any way for implement PayPal standard that available for Asian countries like UAE using Omnipay.
nekofar
  • 1,497
  • 1
  • 18
  • 25
2
votes
1 answer

Using Omnipay in OctoberCMS plugin

I'm working on a plugin for OctoberCMS and will use Omnipay. I've done a research and found some packages that integrates the Omnipay library with Laravel as ignited/omnipay and barryvdh/laravel-omnipay. I've tried both of them by following this…
ReynierPM
  • 17,594
  • 53
  • 193
  • 363
2
votes
2 answers

List multiple items through Paypal Express checkout using Omnipay & Laravel 4

Is it possible to list all products in a sites "cart" on PayPal. I ask because PayPal says "descriptions" instead of description and it would be nicer than having a combined total with a unhelpful description of "your basket" $request =…
Kiee
  • 10,661
  • 8
  • 31
  • 56
2
votes
2 answers

omnipay array of products

Hello guys I'm working with omnipay in laravel and I want to know how can I change the code to show in the paypal receip the total of every item and the description of them $response=$gateway->purchase( array( 'cancelURL' => …
2
votes
5 answers

Omnipay with SagePay Server not accepting billingCountry

I'm getting the following error when trying to use SagePay Server (from printing out the response): ["data":protected]=>array(3) { ["VPSProtocol"]=> string(4) "2.23" ["Status"]=> string(7) "INVALID" ["StatusDetail"]=> string(107) "The data in the…
JoJo
  • 161
  • 1
  • 12
2
votes
2 answers

Invalid fingerprint exception when processing through securepay using omnipay

I am trying to understand the flow for a payment using Omnipay/SecurePay but always get an error when trying to complete the purchase. From what I can see from the online docs the completePurchase function should be called with the same params as…
Stephen
  • 3,607
  • 1
  • 27
  • 30
2
votes
1 answer

Omnipay not adding tax for Paypal

I am using Omnipay in a custom app. It works fine, but we need to add tax (VAT). Paypal's API paramaters for tax seem to have no effect. I searched through the Omnipay Paypal code, and I cannot see any reference to tax. Does Omnipay support adding…
Laurence Cope
  • 403
  • 7
  • 20