- Java 11
- Spring Boot 2.5.4
- Maven (dependency manager)
- Java 8 or higher (follow the download instructions here).
- Read our instructions on how to create an application at the Mercado Pago Developer Panel in order to acquire your public key and access token. They will grant you access to Mercado Pago's public APIs.
- Clone the project.
git clone https://github.com/mercadopago/card-payment-sample-java.git
- Go to the project's folder.
cd card-payment-sample-java
- Run the following command:
Linux / MacOS
./mvnw clean install
Windows
./mvnw.cmd clean install
- Run the following command to start the application:
Linux / MacOS
./mvnw spring-boot:run -Dspring-boot.run.arguments="--mercado_pago_sample_public_key=YOUR_PUBLIC_KEY --mercado_pago_sample_access_token=YOUR_ACCESS_TOKEN"
Windows
./mvnw.cmd spring-boot:run -Dspring-boot.run.arguments="--mercado_pago_sample_public_key=YOUR_PUBLIC_KEY --mercado_pago_sample_access_token=YOUR_ACCESS_TOKEN"
-
Remember to replace the values of
YOUR_PUBLIC_KEY
andYOUR_ACCESS_TOKEN
with the corresponding credentials from your account. -
Navigate to http://localhost:8080 in your browser.
On our testing instructions you'll find credit cards that can be used along with this sample and a guide on how to create test users.
You can contribute to this project by reporting problems and bugs. Before opening an issue, make sure to read our code of conduct.
MIT License. Copyright (c) 2021 - Mercado Pago
For more information, see the LICENSE file.