amazon-pay-sdk-java icon indicating copy to clipboard operation
amazon-pay-sdk-java copied to clipboard

Amazon Pay Java SDK

Results 15 amazon-pay-sdk-java issues
Sort by recently updated
recently updated
newest added

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) ![image](https://user-images.githubusercontent.com/778243/100214635-6840ee00-2f10-11eb-9e7a-99ee85b15ff4.png) it generates a IllegalArgumentException calling the com.amazon.pay.response.parser.Parser methods, probably because there the accessExternalDTD has been set as not supported: ![image](https://user-images.githubusercontent.com/778243/100215427-46943680-2f11-11eb-8efa-00e2358e212f.png)...

*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...

dependencies

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("");...