mirror of
https://github.com/jlengrand/adyen-java-spark-online-payments.git
synced 2026-03-10 08:01:24 +00:00
Merge pull request #1 from epereztg/adjust_config_properties
fix properties name
This commit is contained in:
12
README.md
12
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
|
||||
MIT license. For more information, see the **LICENSE** file in the root directory
|
||||
|
||||
@@ -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
|
||||
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
|
||||
|
||||
Reference in New Issue
Block a user