代码之家  ›  专栏  ›  技术社区  ›  Prabhakaran

登录后Paypal API重定向至空白屏幕

  •  3
  • Prabhakaran  · 技术社区  · 6 年前

    我已集成 Laravel Paypal Integration 并遵循所有步骤进行整合 express checkout . 当我运行应用程序时,它显示以下两个屏幕:

    Test Facilitator - Test Store 1

    登录后,我只能看到这个页面,什么也看不到。

    Test Facilitator - Test Store 2

    任何人的猜测都可能是什么问题?

    注意:这是沙盒

    2 回复  |  直到 6 年前
        1
  •  4
  •   Tanner Babcock    6 年前

    This link may be of some help to you. 确保您的沙箱帐户是针对美国的,而不是针对印度或其他国家。另一件要尝试的事情是确保您的“模式”设置为 live 在里面 config/config.php .

    return [
        'mode' => 'live',        // Can only be 'sandbox' Or 'live'. If empty or invalid, 'live' will be used.
        'sandbox' => [
            'username' => '',       // Api Username
            'password' => '',       // Api Password
            'secret' => '',         // This refers to api signature
            'certificate' => '',    // Link to paypals cert file, storage_path('cert_key_pem.txt')
        ],
        // etc...
    ];
    
        2
  •  1
  •   BH7    6 年前

    在配置文件中:

    路径:/config/config。php:( laravel-paypal )

    将“sandbox”更改为“live”

    '模式'=>'沙盒',//只能是“沙盒”或“活动”。如果为空或无效,将使用“live”。