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

Amazon Pay Ruby SDK

Results 8 amazon-pay-sdk-ruby issues
Sort by recently updated
recently updated
newest added

Issue #, if available: Description of changes: URI.decode is obsolete in Ruby 3, and needs to be fixed. By submitting this pull request, I confirm that my contribution is made...

Hi, will there be an SDK update to support v2 of amazon pay checkout (https://developer.amazon.com/de/docs/amazon-pay-checkout/upgrading-to-v2-checkout.html#managing-checkout-v1-orders-using-checkout-v2-apis). I was unable to to find the ruby sdk. Thanks Henrik

> ### Other notable changes since 2.7 > * The following default gems are now bundled gems. > * rexml [via](https://www.ruby-lang.org/en/news/2020/12/25/ruby-3-0-0-released/) ### Causing ``` LoadError: cannot load such file --...

Description of changes: I found a typo `response = client.client.get_merchant_account_status` in README. I corrected the typo like this. `response = client.get_merchant_account_status` thank you. By submitting this pull request, I confirm...

# Content - Fix AmazonPay::Response#get_element error # Reference - https://github.com/amzn/amazon-pay-sdk-ruby/issues/11

The upcoming PSD2 forces SCA for all our future payments. Based on the docs (https://developer.amazon.com/docs/eu/amazon-pay-automatic/sca-upgrade-merchant-initiated-transactions.html#change-the-process-to-set-up-a-new-billing-agreement), it states: > If setBillingAgreementDetails returns a constraint, handle them as described in Step 2:...

## Problem Source code of method `AmazonPay::Response#get_element` is: ``` def get_element(xpath, xml_element)   xml = self.to_xml   xml.elements.each(xpath) do |element|   @value = element.elements[xml_element].text   end   return @value end ``` Above source code will...

The AmazonPayments::Login class does not respect the http_proxy environment variable when making its requests. We need to allow support for proxy in the same way for both the payment client...