Questions tagged [mollie]

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.

75 questions
0
votes
1 answer

Parameter naming conflict with Python

While implementing a third-party API (mollie), it seems they've named one of the parameters to support pagination "from" which conflicts with the built in python from. Is there a way for me to use this properly? Am I not passing the parameters…
Spoontech
  • 133
  • 13
0
votes
0 answers

Cant get https to work properly on ngrok. need https to test pyament api webhook

I just started implementing the mollie api to handle payments on my website. You need a url to redirect to and a url as a webhook to update payment states. I'm still developing the website locally, but localhost as a url isn't an option ofcourse. I…
S. Scholte
  • 79
  • 2
  • 9
0
votes
1 answer

Deleting a single product from a session array (Laravel sessions & PHP)

i'm currently working on a webshop that's all about different types of hair colors, but i kinda have an issue right now. I'm working on a button that automatically deletes one product from a session file. For that i'm using a…
0
votes
1 answer

Integrating Mollie payments in NestJS backend

I am trying to integrate Mollie payments into my NestJS backend. To make a connection with Mollie, I have to use their MollieClient function. However, when I try to use it in a service I get the error: Nest can't resolve dependencies of the…
0
votes
0 answers

Error while making payments using Mollie API in php

I am making payments using mollie API in php. But its giving me some errors . I have posted my code and screenshot of the errors. THIS IS MY CODE:
Sayali
  • 11
  • 2
0
votes
2 answers

How to retrieve the QR code for Bancontact with Mollie API?

I'm sending a new payment to Mollie with the include for the QR code (https://docs.mollie.com/reference/v2/payments-api/create-payment#): $payment = $mollie->payments->create([ "amount" => [ "currency" => "EUR", …
Tim Biesmans
  • 73
  • 1
  • 11
0
votes
2 answers

codeigniter mollie payment gateway integration issue

I am trying to apply mollie payment gateway in codeIgniter using ref of https://github.com/mollie/mollie-api-php . But it is not working in it. I have already used this library in laravel which is working over there. when I tried to use in…
disha
  • 123
  • 11
0
votes
0 answers

How can I use the Mollie Order API?

Anyone who is familliar with the Mollie API? I am trying to set up a payment for a webshop, but I don't have much knowledge of the Mollie API. So I got 2 questions: The Order API of Mollie is like the Payment API, but the order API is a bit more…
0
votes
1 answer

b.a.readFileSync is not a function React JS

I'm trying to use the official mollie api. When I run the code local in React JS I get the following error: Then I uploaded the code to firebase hosting. There I get the following error: The environment can be seen via this link:…
Joppe Meijers
  • 301
  • 4
  • 24
0
votes
2 answers

Mollie webhook URL called but payment id not getting

We have already created issues and this similar this https://github.com/mollie/api-documentation/issues/583 We have set webhook URL the id parameter in request but every time we got id is null so my question is id parameter are we pass or your side…
jishan siddique
  • 1,848
  • 2
  • 12
  • 23
0
votes
3 answers

Mollie payment `Unauthorized Request` while hit the URL using C# but it's working on postman

Mollie Payment fail while sending request in https://api.mollie.com/v2/payments using HttpClient class in System.Net.Http Mollie payment request using v2/payments API working fine through Postman but getting unauthorized request error in c#…
jishan siddique
  • 1,848
  • 2
  • 12
  • 23
0
votes
2 answers

Mollie webhook isn't called?

So I'm trying to make fake test payments for a school project, using Mollie. The payments, and the redirect after the payments, work just fine but the Webhook.php just doesn't seem to be called. This is what's going on in the payment…
0
votes
1 answer

Why can't mollie call webhook URL?

I have build a custom webshop using PHP and typescript with React, and to process payments I am using Mollie. I have tested everything locally and on the server (shared webhosting) and it all works. But when I make a payment in either live or test…
user11534547
0
votes
0 answers

Write Mollie payment to database via webhook

I'm trying to retrieve a mollie payment by it's payment id in my custom webhook via: $payment = $mollie->payments->get($_POST["id"]); To test it(because i can't var_dump a webhook) I write the payment ID to a request.log file. This DOES write the…
0
votes
0 answers

Mysqli query molliepayments

I'm very new to programming and I'm in school and we have a project where we need to create a website for a fake company. We have been given a database to use and have to integrate a payment system. We have decided to use mollie. I have use to…