From 510956b18330d5f1465c83ed8131ea87c436bd24 Mon Sep 17 00:00:00 2001 From: elenapereztoril Date: Wed, 27 May 2020 10:07:40 +0200 Subject: [PATCH 1/2] fix properties name --- config.properties | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/config.properties b/config.properties index 0830992..982a137 100644 --- a/config.properties +++ b/config.properties @@ -1,9 +1,9 @@ # Enter your information below # No quotation marks are required [DEFAULT] -merchant_account = -checkout_apikey = -origin_key = -checkout_payment_methods_url = https://checkout-test.adyen.com/v52/paymentMethods -checkout_payments_url = https://checkout-test.adyen.com/v52/payments -checkout_detail_url = https://checkout-test.adyen.com/v52/payments/details \ No newline at end of file +merchantAccount = +apiKey = +originKey = +paymentMethodsUrl = https://checkout-test.adyen.com/v52/paymentMethods
 +paymentsUrl = https://checkout-test.adyen.com/v52/payments
 +paymentsDetailsUrl = https://checkout-test.adyen.com/v52/payments/details From 4d2632dce339cf494214c5d63e1d73793f659006 Mon Sep 17 00:00:00 2001 From: elenapereztoril Date: Wed, 27 May 2020 10:22:34 +0200 Subject: [PATCH 2/2] fix readme to match config file --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 21fdcc3..e95157a 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ This repository includes examples of PCI-compliant UI integrations for online pa * iDEAL * Klarna * Sofort - + ## Requirements @@ -36,14 +36,14 @@ The Gradle build will install the following jars from maven central 1. Clone this repo 2. Make sure you have Java installed - + ## Usage 1. Update the config file `config.properties` with your [API key](https://docs.adyen.com/user-management/how-to-get-the-api-key), [Origin Key](https://docs.adyen.com/user-management/how-to-get-an-origin-key), and merchant account name like below: ``` - merchant_account = TestMerchantAccount - checkout_apikey = SampleAPIKey - origin_key = SampleOriginKey + merchantAccount = TestMerchantAccount + apiKey = SampleAPIKey + originKey = SampleOriginKey ``` 3. Run `./gradlew run` 3. Visit [http://localhost:8080](http://localhost:8080) and select an integration type! @@ -54,4 +54,4 @@ We commit all our new features directly into our GitHub repository. Feel free to ## License -MIT license. For more information, see the **LICENSE** file in the root directory \ No newline at end of file +MIT license. For more information, see the **LICENSE** file in the root directory