This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Create an .env file with MOLLIE_APIKEY=YOUR_API_KEY, where YOUR_API_KEY is the api key of your test account | |
// Run this script with "node reproduce.js" | |
// Click the payment link in the console, pay for the order using iDeal | |
// See the error in your browser, and see in the Mollie dashboard that | |
const { createMollieClient } = require('@mollie/api-client'); | |
const axios = require('axios'); | |
(async () => { |
OlderNewer