2013-03-19から1日間の記事一覧

Rails3でActiveMerchantを使う

ここを参考に http://www.codyfauser.com/2008/1/17/paypal-express-payments-with-activemerchant

Railsのフォームでセレクタを使う

form_forを使うとき <%= f.select :phone_type, options_for_select([["Select One", ""], "Cell", "Work", "Office", "Home", "Other"]), :class => 'genForm_dropBox' %>http://stackoverflow.com/questions/5200213/rails-3-f-select-options-for-select…

Activemerchantで日本円を使う

http://hajimete-ruby.jugem.jp/?cid=17config/environments/development.rbに ActiveMerchant::Billing::PaypalExpressGateway.default_currency = "JPY"を追加するあと、×100しないと日本円にならないという話もあった。 ・日本円でActiveMerchantの金…

PaypalのSandboxのAPI Credentials

Developerのサイトが新しくなって API Credentialをどのように発行して良いのか情報がなかったので。Developerサイト(developer.paypal.com)にログインすると、 foobar@hoge.comのメアドで登録していた場合 foobar-facillitator@hoge.comっていうビジネスア…

PaypalのSandboxへのログイン

www.sandbox.paypal.comのURLを打ち込むと Please login to use the PayPal Sandbox features. と出てきて、先に進めない件。ここ最近みんな失敗してるみたい。 Stackoverflowみたらキャッシュ削除しろとかFirefoxで試せとかいろいろ書いてあった。 http://s…