在 paypal REST API 中发送带有付款人信息的用户电子邮件地址

Posted

技术标签:

【中文标题】在 paypal REST API 中发送带有付款人信息的用户电子邮件地址【英文标题】:Send User Email address with payer information in paypal REST API 【发布时间】:2016-05-12 19:36:21 【问题描述】:

嗨朋友们,我在我的电子商务网站中使用 paypal REST API。一切正常。我需要的是,我必须向用户发送带有购物车和付款人信息的电子邮件,以将其存储在贝宝中。我该怎么做?

                $items[] = array(
                        'name' => $product_name, 
                        'quantity' => 1, 
                        'price' => $cart_item['amount'], 
                        'sku' => $current['uid'], 
                        'currency' => 'USD'
                        );
$credit_card = array(
                            'type'=> $cc_card_type, 
                            'number' => $cc_card_number, 
                            'expire_month'=>$cc_card_month, 
                            'expire_year'=>$cc_card_year, 
                            'cvv2'=>$cc_card_cvv2,
                            'first_name'=>$cc_first_name,
                            'last_name'=>$cc_last_name
                            );      

$result = pay_direct_with_credit_card($credit_card, PP_CURRENCY , $total_amount, $items, $payment_desc) ;       

【问题讨论】:

【参考方案1】:

您可以通过提供payer_info object来做到这一点

见: Payment Object > Payer > payer_info object

第..

【讨论】:

以上是关于在 paypal REST API 中发送带有付款人信息的用户电子邮件地址的主要内容,如果未能解决你的问题,请参考以下文章

用于银行交易中预期目的的带有自定义发票编号的 PayPal Rest API 付款

PayPal .net REST API - 带有额外一次性付款的重复计费协议

带有 PHP SDK 的 Paypal REST API - 如何获取交易号?

通过 Classic 或 Rest API 的 Paypal 付款

paypal Java Rest API 在付款执行前获取运输信息

Paypal REST API - 在 RedirectUrls() 中发送 GET 标头