ruby authorize.net gemを使用して、first_name、 last_name、請求先住所の詳細などのアドレスの詳細を authorize.net AIM に渡す方法はありますか?住所の詳細を渡します。
どんな助けでも大歓迎です。
質問する
324 次
1 に答える
1
Authorize.netをゲートウェイとして使用するように構成できるActiveMerchantの使用を検討してください
見る
- http://railscasts.com/?tag_id=23
- エピソード 144 および 145
- http://activemerchant.org/
- https://github.com/Shopify/active_merchant
- http://rdoc.info/github/Shopify/active_merchant/master/frames
レールキャストから #145
response = GATEWAY.purchase(price_in_cents, credit_card, purchase_options)
# where credit_card is a hash of all card info
# - type, number, cvv, first and last name, etc
# and purchase_options is also a hash and contains additional info like billing address
于 2013-07-23T17:09:10.670 に答える