We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
See the follwing sections
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 response = null; JSONObject payload = new JSONObject(); JSONObject updateWebCheckoutDetail = new JSONObject(); updateWebCheckoutDetail.put("checkoutResultReturnUrl", "https://localhost/store/checkout_return"); payload.put("webCheckoutDetail", updateWebCheckoutDetail);
JSONObject payload = new JSONObject(); JSONObject webCheckoutDetails = new JSONObject(); webCheckoutDetails.put("checkoutReviewReturnUrl", "https://localhost/store/checkout_review"); payload.put("webCheckoutDetails", webCheckoutDetails); ### Making an updateCheckoutSession request ```java AmazonPayResponse response = null; JSONObject payload = new JSONObject(); JSONObject updateWebCheckoutDetails = new JSONObject(); updateWebCheckoutDetails.put("checkoutResultReturnUrl", "https://localhost/store/checkout_return"); payload.put("webCheckoutDetails", updateWebCheckoutDetails);
The text was updated successfully, but these errors were encountered:
Thanks for the feedback. I think you meant to post this issue into our Checkout V2 SDK GitHub repo: https://github.com/amzn/amazon-pay-api-sdk-java
Sorry, something went wrong.
No branches or pull requests
See the follwing sections
Making a createCheckoutSession request
These should be changed to
Making a createCheckoutSession request
The text was updated successfully, but these errors were encountered: