Mollie is an online payment processor. The company is based in the Netherlands. They support iDEAL, credit card, PayPal, and Bitcoin, among other options. There is an HTTP API as well as PHP, Ruby, Node.js, and Python libraries.
Questions tagged [mollie]
75 questions
11
votes
2 answers
Laravel Omnipay - The transactionReference parameter is required
I'm working with the open source ticket system called Attendize.
They already have the payment provider Stripe integrated. Now I'm trying to make this work with the payment provider Mollie.
The problem is I keep stumbling on this error:
My code…

nielsv
- 6,540
- 35
- 111
- 215
5
votes
2 answers
WooCommerce: Payment after confirming order
I am creating a Woocommerce shop. The client wants to use the payment plugin "Mollie" to accept iDeal payments (Dutch).
When people order items from the webshop, they should be able to order everything they want without paying. After that, the shop…

polonium
- 247
- 4
- 17
4
votes
1 answer
Response object - Payment with Mollie and Omnipay
I'm trying to create a payment with Omnipay and Mollie in my Laravel project. I'm using the following 2 libraries:
https://github.com/barryvdh/laravel-omnipay
https://github.com/thephpleague/omnipay-mollie
I'm doing the following in my…

nielsv
- 6,540
- 35
- 111
- 215
4
votes
3 answers
No 'Access-Control-Allow-Origin' header is present on the requested resource - Mollie payment ajax
I'm trying to create a mollie payment with the following 2 libraries:
https://github.com/barryvdh/laravel-omnipay
https://github.com/thephpleague/omnipay-mollie
When the client fills in the form and submits an ajax request will be made to a…

nielsv
- 6,540
- 35
- 111
- 215
4
votes
2 answers
How to display Mollie order status in the redirecturl?
The redirectURL does not seem to POST any data back. It seems to use a GET request. How do I know the payment ID or payment status on the return URL?
$payment = \mollie::api()->payments()->create([
'amount' => $price,
'customerId' …

Z0q
- 1,689
- 3
- 28
- 57
3
votes
0 answers
Android Intent: How to get data back from a browser switch
I'm currently trying to implement mollie payment into the flutter framework. For that I want to build a plugin in Java. So mollie has a very good documentation how to implement their API into an android app with Java. So the problem is when I hit…

Funkberater
- 775
- 8
- 16
3
votes
1 answer
Can't verify CSRF token autenticity
I am trying to install the Mollie API, but I don't get the webhook working. I am working in Ruby on Rails 4. It keeps saying Can't verify CSRF token autenticity. I tried several answers from stackoverflow but they don't work. E.g.…

Chris Rutte
- 173
- 1
- 14
3
votes
0 answers
Ionic/Meteor InAppBrowser return to app based on close or redirect url
Hi I am using a Meteor/Ionic to create an application.
Final step in the application is to go to External Payment page (url received by Payment provider API) and come back to app after Payment is done.
Two Questions
- I can pass through a redirect…

Stein Vermeulen
- 31
- 2
2
votes
1 answer
Django CSRF verification failed. Webhook payment system
I'm trying to implement a webhook for my payment system. I have a path to my webhook view, which is a simple definition where the provided id is printed.
The usage is like this
http://localhost:8000/api/mollie-webhook/?id=ExampleId
Path
# mollie…

SJ19
- 1,933
- 6
- 35
- 68
2
votes
1 answer
Laravel Cashier Mollie event listener not triggering event
I am working on a project with a subscription product. I want to send out a notification (like a log or something) when a certain event is triggered for example the payment has failed. I tried to trigger my log via the EventServiceProvider and via a…

tomastecom
- 21
- 1
- 2
2
votes
1 answer
Mollie v2 .NET library creating and checking status of a payment request
I want to upgrade my Mollie .NET payment client (see https://github.com/Viincenttt/MollieApi) from v1 to v2.
I've installed the library, but am unable to create a payment request or check its status, as I can't find the Amount method and Currency…

Adam
- 6,041
- 36
- 120
- 208
2
votes
2 answers
Add Cancel URL - Mollie Payment
I have implemented Mollie Payment with my Laravel framework.
How to add cancel URL to redirect to cancel screen? As I have checked in the documentation, it is having only redirection URL. I haven't find anything yet for this problem.

Mayuri Darji
- 21
- 3
2
votes
1 answer
Payments with Laravel Omnipay (mollie gateway)
I'm currently stuck trying to create a payment with Omnipay. I have the following libraries installed in my project:
https://github.com/barryvdh/laravel-omnipay
https://github.com/thephpleague/omnipay-mollie
But I'm having problems starting. I see…

nielsv
- 6,540
- 35
- 111
- 215
2
votes
0 answers
Installing Mollie payments API: unpermitted_parameters
I am installing the Mollie payments API. Unfortunately, I get an unpermitted parameters: _method, authenticity_token (in the log). Here I would expect that a new window is opened that connects with Mollie.
I call the API by:
if @reservation
…

Chris Rutte
- 173
- 1
- 14
2
votes
1 answer
Generate payment link using cURL and php
I'm trying to get a payment link to work, but whatever I try to do either breaks the page (white screen) or lands me at an XML page.
Since I'm not fully understand the code, this is the explanation that I got with it:
Request code:
$ curl -X GET…

Bart van Oort
- 21
- 1