0

I am trying to integrate Mollie into a Sylius application that uses Payum. But when I go to payment, instead of redirecting to Mollie (Omnipay) it just shows this CreditCard Form.

I tried debugging it but I cannot find where I am going wrong. I don't know what I am doing wrong here...

Exammple of the form

Here's the config

sylius_payment:
    gateways:
        mollie: Mollie
payum:
    contexts:
        mollie:
            omnipay:
                type: Mollie
                options:
                    apiKey:   test_...

Edit:

I updated to 0.14 but now I get this:

Unrecognized option "omnipay" under "payum.payments.mollie"

I was following the example on the site here:

http://payum.org/doc/0.14/PayumBundle/custom_purchase_examples/stripe_via_omnipay

4

1 回答 1

0

“payum.payments.mollie”下无法识别的选项“omnipay”

您必须使用omnipay_direct工厂名称。

我去付款,而不是重定向到 Mollie (Omnipay),它只显示这张信用卡表格。

Mollie 需要重定向到他们的网站,是吗(就像 Paypal Express Checkout 一样)?如果是这样,您必须使用omnipay_offiste工厂。

于 2015-04-16T06:40:39.083 回答