开源软件名称(OpenSource Name):Adyen/adyen-java-api-library开源软件地址(OpenSource Url):https://github.com/Adyen/adyen-java-api-library开源编程语言(OpenSource Language):Java 100.0%开源软件介绍(OpenSource Introduction):Adyen Java API LibraryThis is the officially supported Java library for using Adyen's APIs. The library supports all APIs under the following services:
For more information, refer to our documentation or the API Explorer. Prerequisites
InstallationYou can use Maven and add this dependency to your project's POM:
Alternatively, you can download the release on GitHub. Using the libraryGeneral use with API keySet up the client as a singleton resource; you'll use it for the API calls that you make to Adyen: // Setup Client and Service
Client client = new Client("Your X-API-KEY", Environment.TEST);
Checkout checkout = new Checkout(client);
// Create PaymentsRequest
PaymentsRequest paymentsRequest = new PaymentsRequest();
paymentsRequest.setMerchantAccount("YOUR_MERCHANT_ACCOUNT");
String encryptedCardNumber = "test_4111111111111111";
String encryptedExpiryMonth = "test_03";
String encryptedExpiryYear = "test_2030";
String encryptedSecurityCode = "test_737";
paymentsRequest.addEncryptedCardData(encryptedCardNumber,encryptedExpiryMonth, encryptedExpiryYear, encryptedSecurityCode);
Amount amount = new Amount();
amount.setCurrency("EUR");
amount.setValue(1000L);
paymentsRequest.setAmount(amount);
paymentsRequest.setReference("Your order number");
paymentsRequest.setReturnUrl("https://your-company.com/checkout?shopperOrder=12xy..");
// Make a call to the /payments endpoint
PaymentsResponse paymentsResponse = checkout.payments(paymentsRequest); General use with API key for live environmentFor requests on live environment, you need to pass the Live URL Prefix to the Client object: // Setup Client and Service
Client client = new Client("Your X-API-KEY", Environment.LIVE, "Your live URL prefix");
Checkout checkout = new Checkout(client);
... General use with basic auth // Setup Client and Service
Client client = new Client("Your username", "Your password", Environment.LIVE, "Your live URL prefix", "Your application name");
Checkout checkout = new Checkout(client);
... Using notification webhooks parser String json = "The notification message sent to your webhook";
NotificationHandler notificationHandler = new NotificationHandler();
GenericNotification notificationMessage = notificationHandler.handleMarketpayNotificationJson(json);
... Proxy configurationYou can configure a proxy connection by injecting your own AdyenHttpClient on your client instance. Example: ...
AdyenHttpClient adyenHttpClientWithProxy = new AdyenHttpClient();
Proxy proxy = new Proxy(Proxy.Type.HTTP, new InetSocketAddress("PROXY_HOST", PROXY_PORT));
adyenHttpClientWithProxy.setProxy(proxy);
client.setHttpClient(adyenHttpClientWithProxy); Example integrationsFor a closer look at how our Java library works, you can clone one of our example integrations:
These include commented code, highlighting key features and concepts, and examples of API calls that can be made using the library. ContributingWe encourage you to contribute to this repository, so everyone can benefit from new features, bug fixes, and any other improvements. Have a look at our contributing guidelines to find out how to raise a pull request. SupportIf you have a feature request, or spotted a bug or a technical problem, create an issue here. For other questions, contact our Support Team. LicenceThis repository is available under the MIT license. See also
|
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论