Cookies

Utilizamos cookies propias y de terceros para mejorar nuestros servicios.

Viernes, 15 de Noviembre del 2024

Hacia un nuevo modo de vincularnos



import { MercadoPagoConfig, Preference } from 'mercadopago'; const client = new MercadoPagoConfig({ accessToken: 'YOUR_ACCESS_TOKEN' }); const preference = new Preference(client); preference.create({ body: { false, items: [ { title: 'My product', quantity: 1, unit_price: 2000 } ], } }) .then(console.log) .catch(console.log);