2

为了确保一致的体验,我想在 paypal 的页面上设置标题图像和业务,查看项目及其名称和描述,并要求客户选择送货地址。

我正在使用 active_paypal_adaptive_payment gem ( https://github.com/jpablobr/active_paypal_adaptive_payment ) 和 set_payment_options 的选项:

response = ADAPTIVE_GATEWAY.setup_purchase(
  :action_type => 'CREATE',
  :receiver_list => recipients,
  ...
)

ADAPTIVE_GATEWAY.set_payment_options(
  :display_options => {
    :business_name => 'Big Business',
    :header_image_url => 'url goes here'
  },
  :sender_options => {
    :require_shipping_address_selection => true },
  :receiver_options => [{
    :description => _description,
    :invoice_data => {
      :item => [{ 
        :name => _title, 
        :item_count => 1, 
      }],
      :total_shipping => 10.0,
      :total_tax => 10
    },
    :receiver => { 
      :email => email 
    }
  }])
)

问题是它不起作用 - 我没有看到任何企业名称或图像,我在左栏中看到通用名称(带有物品且流程不要求提供送货地址的名称)。

贝宝通用消息无项目详细信息

您能否提一些建议?

4

1 回答 1

0

您也可以登录 PayPal,然后转到我的销售工具并更新自定义支付页面选项,以使用您选择的颜色组合和徽标创建新的页面样式(徽标图像有大小限制)

于 2014-07-29T18:36:07.710 回答