0

我目前正在努力将 paypal 的链式支付方式集成到 magento 中。 https://cms.paypal.com/ca/cgi-bin/?cmd=_render-content&content_ID=developer/e_howto_api_APIntro

支付流程是:买家支付卖家的贝宝账户 -> pp 自适应支付网关 -> 85% 进入卖家的贝宝,15% 进入网站的默认贝宝账户(买家不知道这种拆分)。

我已经有 api 函数需要 2 个贝宝账户(卖家和网站的默认值)和付款金额,我希望将其集成。

以前有没有人集成过自适应支付,或者指出我应该在哪里集成这个逻辑?我会覆盖 /app/code/core/Mage/paypal 中的功能之一吗?

我基本上需要获取当前购物车中的总成本,以及当前商店的贝宝电子邮件,并将其传递给我的函数。

4

2 回答 2

1

首先,您需要为 magento 创建一个单独的付款方式,我建议您为其创建一个付款模块,然后您需要注册到 paypal 沙箱帐户。我附上了自适应支付集成的示例代码,还有一些有用的链接,用于流程它将如何工作

ini_set("track_errors", true);
//set PayPal Endpoint to sandbox
$sandbox="";
$API_AppID = XXXXXXXXXXXXXXXXXXX;//your adaptive payment app Id
//value for check sandbox enable or disable
$sandboxstatus=1;
if($sandboxstatus==1){
    $sandbox="sandbox.";
    $API_AppID="APP-80W284485P519543T";
}
$url = trim("https://svcs.".$sandbox."paypal.com/AdaptivePayments/Pay");
//PayPal API Credentials
$API_UserName = XXXXXXXXXXXXXXXXXXX;//TODO
$API_Password = XXXXXXXXXXXXXXXXXXX;//TODO
$API_Signature = XXXXXXXXXXXXXXXXXXX;//TODO 
//Default App ID for Sandbox    
$API_RequestFormat = "NV";
$API_ResponseFormat = "NV";

$bodyparams = array (
    "requestEnvelope.errorLanguage" => "en_US",
    "actionType" => "PAY",
    "currencyCode" => "USD",//currency Code
    "cancelUrl" => "",// cancle url
    "returnUrl" => "paymentsuccess",//return url
    "ipnNotificationUrl" => "paymentnotify"//notification url that return all data related to payment
);

$finalcart=array(
        array('paypalid'=>"partner1",'price'=>50),
        array('paypalid'=>"partner2",'price'=>50),
        array('paypalid'=>"partner3",'price'=>50),
        array('paypalid'=>"partner4",'price'=>50),
        array('paypalid'=>"partner5",'price'=>50)
      );

$i=0;
foreach($finalcart as $partner){
    $temp=array("receiverList.receiver($i).email"=>$partner['paypalid'],"receiverList.receiver($i).amount"=>$partner['price']);
    $bodyparams+=$temp; 
    $i++;
}

// convert payload array into url encoded query string
$body_data = http_build_query($bodyparams, "", chr(38));
try{
   //create request and add headers
   $params = array("http" => array( 
      "method" => "POST",
      "content" => $body_data,
      "header" => "X-PAYPAL-SECURITY-USERID: " . $API_UserName . "\r\n" .
                     "X-PAYPAL-SECURITY-SIGNATURE: " . $API_Signature . "\r\n" .
                     "X-PAYPAL-SECURITY-PASSWORD: " . $API_Password . "\r\n" .
                     "X-PAYPAL-APPLICATION-ID: " . $API_AppID . "\r\n" .
                     "X-PAYPAL-REQUEST-DATA-FORMAT: " . $API_RequestFormat . "\r\n" .
                     "X-PAYPAL-RESPONSE-DATA-FORMAT: " . $API_ResponseFormat . "\r\n"
   ));
   //create stream context
   $ctx = stream_context_create($params);
   //open the stream and send request
   $fp = @fopen($url, "r", false, $ctx);
   //get response
   $response = stream_get_contents($fp);
   //check to see if stream is open
   if ($response === false) {
      throw new Exception("php error message = " . "$php_errormsg");
   }
   //close the stream
   fclose($fp);
   //parse the ap key from the response
   $keyArray = explode("&", $response);
   foreach ($keyArray as $rVal){
       list($qKey, $qVal) = explode ("=", $rVal);
       $kArray[$qKey] = $qVal;
   }
   //set url to approve the transaction
   $payPalURL = "https://www.".$sandbox."paypal.com/webscr?cmd=_ap-payment&paykey=" . $kArray["payKey"];
   //print the url to screen for testing purposes
   If ( $kArray["responseEnvelope.ack"] == "Success") {
    echo '<p><a id="paypalredirect" href="' . $payPalURL . '"> Click here if you are not redirected within 10 seconds...</a> </p>';
    echo '<script type="text/javascript"> 
            function redirect(){
           document.getElementById("paypalredirect").click();
            }
            setTimeout(redirect, 2000);
              </script>';
   }
   else {
     echo 'ERROR Code: ' .  $kArray["error(0).errorId"] . " <br/>";
     echo 'ERROR Message: ' .  urldecode($kArray["error(0).message"]) . " <br/>";
  }
}
catch(Exception $e) {
    echo "Message: ||" .$e->getMessage()."||";
}

您可能会忽略模块流程,但您可以按照设置沙箱帐户以进行贝宝付款的步骤进行操作,希望对您有所帮助

于 2013-10-16T11:38:45.813 回答
0

您可能需要为此编写一个全新的支付模块。从我所看到的(我承认自从我详细查看它以来已经有一点点),当前 Magento 中的 PayPal 集成不支持链式支付。

如果需要,您仍然可以扩展现有的 PayPal 模块,但您需要编写 API 请求以相应地处理自适应支付调用。同样,没有任何现有函数可以在扩展模块中简单地覆盖。您只需要从一开始就创建自己的。

如果最新版本的 Magento 添加了一些自适应支付,那么我可能错了。如果是这种情况,您可能会在 /paypal 目录中看到直接引用它的内容,您可以研究其中的函数以查看可以用自己的函数覆盖的内容。也就是说,如果他们已经将自适应支付作为支付模块包含在内,那么您真的不需要在代码中对其进行自定义。

于 2012-11-16T19:19:50.143 回答