2

Paypal 一括支払いアプリケーションを作成しましたが、「資金が不足しています」というエラーが返されます。

コードを以下に示します。

            <?php
            $environment = 'sandbox';   // or 'beta-sandbox' or 'live'

            function PPHttpPost($methodName_, $nvpStr_) {
                global $environment;


                $API_UserName = urlencode('myusername-facilitator_api1.gmail.com');
                $API_Password = urlencode('1363173069');
                $API_Signature = urlencode('AIocgW-6xeVUBXWE8pFoChIyO4ClAMlqzb9NjIHfm7tgCjquZayeYDUC');
                $API_Endpoint = "https://api-3t.paypal.com/nvp";
                if("sandbox" === $environment || "beta-sandbox" === $environment) {
                    $API_Endpoint = "https://api-3t.$environment.paypal.com/nvp";
                }
                $version = urlencode('51.0');

                // Set the curl parameters.
                $ch = curl_init();
                curl_setopt($ch, CURLOPT_URL, $API_Endpoint);
                curl_setopt($ch, CURLOPT_VERBOSE, 1);

                // Turn off the server and peer verification (TrustManager Concept).
                curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
                curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, FALSE);
                curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
                curl_setopt($ch, CURLOPT_POST, 1);

                // Set the API operation, version, and API signature in the request.
                $nvpreq = "METHOD=$methodName_&VERSION=$version&PWD=$API_Password&USER=$API_UserName&SIGNATURE=$API_Signature$nvpStr_";
                //print_r($nvpreq);exit;
                // Set the request as a POST FIELD for curl.
                curl_setopt($ch, CURLOPT_POSTFIELDS, $nvpreq);

                // Get response from the server.
                $httpResponse = curl_exec($ch);

                if(!$httpResponse) {
                    exit("$methodName_ failed: ".curl_error($ch).'('.curl_errno($ch).')');
                }

                // Extract the response details.
                $httpResponseAr = explode("&", $httpResponse);

                $httpParsedResponseAr = array();
                foreach ($httpResponseAr as $i => $value) {
                    $tmpAr = explode("=", $value);
                    if(sizeof($tmpAr) > 1) {
                        $httpParsedResponseAr[$tmpAr[0]] = $tmpAr[1];
                    }
                }

                if((0 == sizeof($httpParsedResponseAr)) || !array_key_exists('ACK', $httpParsedResponseAr)) {
                    exit("Invalid HTTP Response for POST request($nvpreq) to $API_Endpoint.");
                }

                return $httpParsedResponseAr;
            }

            // Set request-specific fields.
            $emailSubject =urlencode('example_email_subject');
            $receiverType = urlencode('EmailAddress');
            $currency = urlencode('USD');                           // or other currency ('GBP', 'EUR', 'JPY', 'CAD', 'AUD')

            // Add request-specific fields to the request string.
            $nvpStr="&EMAILSUBJECT=$emailSubject&RECEIVERTYPE=$receiverType&CURRENCYCODE=$currency";

            $receiversArray = array();

            for($i = 0; $i < 3; $i++) {
                $receiverData = array(  'receiverEmail' => "bhavin.radidya@gmailcom",
                                        'amount' => "10",
                                        'uniqueID' => "13",
                                        'note' => "test Payment");
                $receiversArray[$i] = $receiverData;
            }

            foreach($receiversArray as $i => $receiverData) {
                $receiverEmail = urlencode($receiverData['receiverEmail']);
                $amount = urlencode($receiverData['amount']);
                $uniqueID = urlencode($receiverData['uniqueID']);
                $note = urlencode($receiverData['note']);
                $nvpStr .= "&L_EMAIL$i=$receiverEmail&L_Amt$i=$amount&L_UNIQUEID$i=$uniqueID&L_NOTE$i=$note";
            }

            // Execute the API operation; see the PPHttpPost function above.
            $httpParsedResponseAr = PPHttpPost('MassPay', $nvpStr);

            if("SUCCESS" == strtoupper($httpParsedResponseAr["ACK"]) || "SUCCESSWITHWARNING" == strtoupper($httpParsedResponseAr["ACK"])) {
                exit('MassPay Completed Successfully: '.print_r($httpParsedResponseAr, true));
            } else  {
                exit('MassPay failed: ' . print_r($httpParsedResponseAr, true));
            }

すべてのパラメーターを適切に構成しましたが、それでもこのエラー応答が返されます。PayPal アカウントで調整しなければならない設定はありますか?

4

3 に答える 3

1

上記と同じ問題がありました。これが私が問題を解決した方法です。

ステップ 1: 対応するサンドボックス アカウントに移動し、資金調達タブでアカウント残高を確認します。(0 ドルの場合は、簡単に新しいユーザーを作成し、残高として十分な金額を割り当てることができます。たとえば、1 万ドル)

ステップ 2: API 資格情報を、十分な残高がある新しいユーザーに切り替えます。ここで、API 呼び出しを再度実行します。

アカウントに 10,000 SGD を追加し、API 呼び出しを行っている間に 20USD の取引を行ったため、この API 要求でも十分な資金が得られませんでした。

そのため、通貨とその通貨での対応する残高を確認してください。

于 2014-12-29T17:40:48.133 に答える
0

一括支払いを送信するには、送信元のアカウント (通常は API 呼び出し元と同じ) に十分な残高が必要です。

デフォルトの「facilitator」アカウントを使用しているようです。これは通常、REST API のテストにのみ使用されます。

[アプリケーション] > [サンドボックス アカウント] からテスト アカウントを作成し、10,000 ドルの余裕のある残高を用意してください。それで解決するはずです。

于 2014-01-06T20:01:30.430 に答える