php - 如何自定义PayPal的结账页面(PayPal-PHP-SDK)

标签 php paypal

我正在按照开发者文档中的建议使用 PayPal-PHP-SDK。我目前正在运行这段代码:

http://paypal.github.io/PayPal-PHP-SDK/

我只是想更改品牌名称并添加 Logo ,但我不知道如何实现。

最佳答案

由于 PayPal 更新了他们的设计,您可以在配置文件设置中进行的设计更改将不再有效。

要更改设计,您需要先创建一个 WebProfile:

    // Create the WebProfile
    $presentation = new Presentation();
    $presentation->setLogoImage("http://www.yeowza.com/favico.ico")
        ->setBrandName("YeowZa! Paypal")
        ->setLocaleCode("US");
    $inputFields = new InputFields();
    $inputFields->setAllowNote(true)
        ->setNoShipping(1)
        ->setAddressOverride(0);
    $webProfile = new WebProfile();
    $webProfile->setName("YeowZa! T-Shirt Shop" . uniqid())
        ->setPresentation($presentation)
        ->setInputFields($inputFields);
    try {
        $createdProfile = $webProfile->create($paypal);
        $createdProfileID = json_decode($createdProfile);
        $profileid = $createdProfileID->id;
    } catch(PayPal\Exception\PayPalConnectionException $pce) {
        echo '<pre>',print_r(json_decode($pce->getData())),"</pre>";
        exit;
    }

创建的Profile的ID保存在$profileid中,这个ID需要通过设置。 setExperienceProfileId($profileid) 如果您创建付款。

        // Create the Payment       
    $product = $_POST['product'];
    $price = 4;
    $shipping  = 2;
    $total = $price + $shipping;

    $payer = new Payer(); 
    $payer->setPaymentMethod("paypal");

    $item1 = new Item();
    $item1->setName('Ground Coffee 40 oz') ->setCurrency('EUR') ->setQuantity(1) ->setSku("123123")->setPrice(6.5); // Similar to `item_number` in Classic API 
    $item2 = new Item();
    $item2->setName('Granola bars') ->setCurrency('EUR') ->setQuantity(1) ->setSku("321321")->setPrice(1.5); // Similar to `item_number` in Classic API  
    $itemList = new ItemList(); 
    $itemList->setItems(array($item1, $item2));

    $details = new Details(); 
    $details->setShipping(1.2) ->setTax(1.3) ->setSubtotal(8);

    $amount = new Amount();
    $amount->setCurrency("EUR") ->setTotal(10.5) ->setDetails($details);

    $transaction = new Transaction();
    $transaction->setAmount($amount)->setItemList($itemList)->setDescription("Payment description")->setInvoiceNumber(uniqid());

    $baseUrl = "http://localhost/abiunity/test.php"; 
    $redirectUrls = new RedirectUrls(); 
    $redirectUrls->setReturnUrl($baseUrl."?success=true")->setCancelUrl($baseUrl."?success=false");

    $payment = new Payment(); 
    $payment->setExperienceProfileId($profileid)->setIntent("sale") ->setPayer($payer) ->setRedirectUrls($redirectUrls) ->setTransactions(array($transaction));
    //$request = clone $payment;

    try {
        $payment->create($paypal);
        $approvalUrl = $payment->getApprovalLink();
        header("Location:".$approvalUrl);
        exit;
    } catch(PayPal\Exception\PayPalConnectionException $pce) {
        echo '<pre>',print_r(json_decode($pce->getData())),"</pre>";
        exit;
    }

我希望这对某人有所帮助并节省一点时间:)

关于php - 如何自定义PayPal的结账页面(PayPal-PHP-SDK),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40165923/

相关文章:

paypal - 通过 PayPal API 处理磁条数据

php - php mysql 中的表连接

javascript - 如何使用php编辑txt文件内容?

php安装错误

ruby - 如何在 Paypal 支付页面中设置我的应用程序名称和 Logo ?

html - 元素不选择类

php - Paypal 无法连接到沙盒服务器。返回错误 14077410(sslv3 警报握手失败)

paypal - 是否可以自定义 Paypal 公司名称/公司名称

javascript - 在 Laravel 中使用 javascript 删除

php - 拉维尔 5 : Installing ide helper for Netbeans