amazon-pay-sdk-java
amazon-pay-sdk-java copied to clipboard
Amazon Pay Java SDK
Hi! After the [last commit](https://github.com/amzn/amazon-pay-sdk-java/commit/12ab080d4846ac0d1542e84da351488b759a3fc1) on src/com/amazon/pay/impl/PayLogUtil.java (Line 128)  it generates a IllegalArgumentException calling the com.amazon.pay.response.parser.Parser methods, probably because there the accessExternalDTD has been set as not supported: ...
*Issue #, if available:* *Description of changes:* Adding the standerd charecter set for encoding from and to string and byte array. These are code changes for issue https://github.com/amzn/amazon-pay-sdk-java/issues/34 Used the...
https://github.com/amzn/amazon-pay-sdk-java/blob/9b0bf0ff293dd24585aabf8e25b01d016e6620d8/src/com/amazon/pay/impl/Util.java#L191 Converting a byte array into a String may lead to data loss.
*Issue #, if available:* *Description of changes:* The change is regarding the minor refactoring of code, which was initally found within Issue https://github.com/amzn/amazon-pay-sdk-java/issues/36 A duplicate line has been removed as...
The following line should be removed: https://github.com/amzn/amazon-pay-sdk-java/blob/804980dee58636c3f460072b180e7f854cebeaea/src/com/amazon/pay/impl/PayClient.java#L1071 because it's a duplicate of line 1068.
Bumps [json](https://github.com/douglascrockford/JSON-java) from 20160212 to 20230227. Release notes Sourced from json's releases. 20230227 Pull Request Description #723 Protect JSONML from stack overflow exceptions caused by recursion #720 Limit the XML...
See the follwing sections ### Making a createCheckoutSession request ```java JSONObject payload = new JSONObject(); JSONObject webCheckoutDetail = new JSONObject(); webCheckoutDetail.put("checkoutReviewReturnUrl", "https://localhost/store/checkout_review"); payload.put("webCheckoutDetail", webCheckoutDetail); ### Making an updateCheckoutSession request AmazonPayResponse...
We are trying to retrieve the status of a merchant account like so: ``` Config conf = new PayConfig() .withAccessKey(AMAZONPAYACCESSKEY) .withSecretKey(AMAZONPAYSECRETKEY) .withCurrencyCode(CurrencyCode.USD) .withSandboxMode(false) .withRegion(Region.US); Client client = new PayClient(conf); final...
Amazon Pay Java SDK version: 3.5.1 Looking at [Util.java - line 186](https://github.com/amzn/amazon-pay-sdk-java/blob/master/src/com/amazon/pay/impl/Util.java#L186) we can see that the JVM property `http.proxyPort` is set everytime a) `httpSendRequest(String method, ....., PayConfig config)` is...
Hello, i'm trying to integrate AmazonPay in our self developed shop system. We've tried to set the proxy settings with Config configkey = new PayConfig() {snip} .withProxyHost(OUR_PROXY) .withProxyPort(PROXY_PORT) .withProxyUsername("") .withProxyPassword("");...