To work with Paypal Webpayments Pro with multiple customers, I notice
Shopify uses one main account and each of the customers just add api
access to that account. Is there any docs around for how that is
carried off within a rails app using AM?
Also, does anyone know how to maintain a session between domains - one
with SSL and one without? I'm trying to use a wildcard SSL for my
customers so they each don't need one. But to get that to work, I'll
need to grab the cart out to the non SSL version.
IE
http://domain.com/cart
to
https://domain.mywilcardeddomain.com/checkout
I figure my options are either post the whole cart(likely) - or try to
refire the session data which is held in the db (dubious). Anyone been
there done that?