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

Not redirecting to payment page when payment created

I am trying to integrate laravel-mollie in my website using in the example that they are providing the example. When i'm creating new payment it should redirect me to payment page, But its not showing anything.. here is my code: public function…
Alauddin Ahmed
  • 133
  • 3
  • 16
0
votes
1 answer

mollie api bancontact fail

I am using this code to use the correct payment method. Except for bancontact it is working, when user opt for bancontact this error is shown API call failed: Error executing API call (request): The payment method is invalid. (Bancontact is set as…
Muiter
  • 1,470
  • 6
  • 26
  • 39
0
votes
1 answer

Round a submission value from SESSION + shortcode with 2 decimals

Can someone explain me what is wrong with this AFTER line of code. BEFORE (EXAMPLE - HOW TO USE): "value" => "27.50" //enforce the use of strings AFTER: "value" => "round($_SESSION["Payment_Amount"], 2)" //Think of that Payment_Amount is 198,99 in…
Dedurex
  • 11
  • 5
0
votes
1 answer

How to configure mollie webhook url?

I was wondering where i should configure the mollie webhook url. I don't find any solutions in the mollie documentation. In my laravel project i already have the route setup and the controller. Route::post('bestelling/webhook',…
Andreea Ilie
  • 65
  • 1
  • 1
  • 7
0
votes
2 answers

php mollie payments recurring billing

My code is : $customer = $mollie->customers->create([ "name" => $name, "email" => $email, ]); $customer->createSubscription([ "amount" => [ "currency" => 'USD', "value" => 20.00, ], …
0
votes
0 answers

Mollie : Not able to get response after payment is done

I am using laravel framework and trying to implement Mollie payment gateway. I have successfully implemented it. But when I am trying to get a response after payment paid. But i am unable to get the response even after success I am using code for…
Jagdeesh Kumar
  • 1,640
  • 2
  • 13
  • 29
0
votes
1 answer

How to use Mollie Api with firebase cloud functions

I could need some help setting up the node.js api from mollie with firebase cloud functions. I tried to use parts of the cloudfunction setting up paypal guide but didn't get it to work yet. I'm new to cloud functions and node.js so i have a hard…
Sam van beastlo
  • 819
  • 2
  • 11
  • 24
0
votes
2 answers

Adding Mollie payments to spree

I'm currently building an webshop that's based in The Netherlands. iDEAL is the most used online payment platform in The Netherlands and I'm trying to add this payment platform to my app. The only problem is that all current gems that support iDEAL…
Salman
  • 1,109
  • 3
  • 25
  • 55
0
votes
1 answer

Combining PHP__autoload with Mollie_API_Autoloader class

Although I know it's not appropriate to ask for ready-to-use code, I do in this case, since I'm failing to find the solution. Trying to use native PHP __autoload function along with the Mollie_API_Autoloader class: class Mollie_API_Autoloader { /** …
user1766045
  • 33
  • 1
  • 3
0
votes
1 answer

Running API/gem on heroku gives Load error

I use the payment provider Mollie in my Ruby on Rails app. It works locally but not on heroku. When I call the API, it gives the error: 500: Load error: cannot load such file -- Mollie/Api/Client. Does someone know how to load the API on heroku?…
Chris Rutte
  • 173
  • 1
  • 14
0
votes
1 answer

Meteor return response from server method to client

I am trying to integrate a payment API. The method I'm using to create a payment should return an object. And in fact it does, but it's just that I can't get the object back to the client. I know that this happens because the method to API is…
NvdB31
  • 81
  • 2
  • 8
0
votes
0 answers

Laravel 5.2 - Mollie API - webhook not working

I'm trying to do do sometype of "Premium" system on my webapp, however I'm having troubles with handling the payment. I'm using the Mollie Api and I found THIS on github that integrates it into laravel. public function postMedium() { $user_id =…
Nicolas
  • 4,526
  • 17
  • 50
  • 87
0
votes
1 answer

Payum always showing payment/capture form (with credit card)

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…
Johan Haest
  • 4,391
  • 28
  • 37
-1
votes
1 answer

Assignment mismatch: 1 variable but mollie.NewClient returns 2 value

Hi I try to make a test payment with a test key of Mollie in Go This the code based on their github "fmt" "net/http" "github.com/VictorAvelar/mollie-api-go/v3/mollie" ) func main() { apiKey := "test_key" client :=…
Othman Boūlal
  • 81
  • 2
  • 10
-1
votes
1 answer

Storing API key

I am building a website that’s gonna have a pay system that works with the mollie API. In particularly the website needs to send users a payment link for their ordered products. To accomplish that mollie needs to authenticate with a api key. So I…
Stan
  • 629
  • 7
  • 18
1 2 3 4
5