1

http://www.angelleye.com/download-angelleye.com/download-angell-eye-php-class-library-for-paypal/のPHP ライブラリを使用して、PayPal アカウントのステータスを確認します。config では、api_username、api_password、および api_signature は Verified および Business からのものです。しかし、それは反応します

Array
(
    [Errors] => Array
        (
            [0] => Array
                (
                    [Receiver] => 
                    [Category] => Application
                    [Domain] => PLATFORM
                    [ErrorID] => 550001
                    [ExceptionID] => 
                    [Message] => User is not allowed to perform this action
                    [Parameter] => 
                    [Severity] => Error
                    [Subdomain] => Application
                )

        )

    [Ack] => Failure
    [Build] => 7784095
    [CorrelationID] => 9beb77e429506
    [Timestamp] => 2013-09-20T03:02:59.383-07:00
    [AccountStatus] => 
    [CountryCode] => 
    [EmailAddress] => 
    [AccountID] => 
    [BusinessName] => 
    [Salutation] => 
    [FirstName] => 
    [MiddleName] => 
    [LastName] => 
    [Suffix] => 
    [XMLRequest] => ReturnAllen_USvinhnt.dev@gmail.comNONE
    [XMLResponse] => 2013-09-20T03:02:59.383-07:00Failure9beb77e4295067784095550001PLATFORMApplicationErrorApplicationUser is not allowed to perform this action
)

その方法と、Paypal アカウントの確認ステータスを確認するにはどうすればよいですか?

アップデート

このデータを掲載します

$GetVerifiedStatusFields = array(
                            'EmailAddress' => 'vinhnt.dev@gmail.com',
                            'FirstName' => 'Vinh Trung', 
                            'LastName' => 'Nguyen', 
                            'MatchCriteria' => 'NAME'
                            );

そして、ここで応答します:

Array

( [エラー] => 配列 ( [0] => 配列 ( [受信者] => [カテゴリ] => アプリケーション [ドメイン] => プラットフォーム [エラー ID] => 580023 [例外 ID] => [メッセージ] => 判別できませんPayPal アカウントのステータス [パラメータ] => [重大度] => エラー [サブドメイン] => アプリケーション )

    )

[Ack] => Failure
[Build] => 7784095
[CorrelationID] => fd4782eabeda1
[Timestamp] => 2013-09-20T23:53:51.560-07:00
[AccountStatus] => 
[CountryCode] => 
[EmailAddress] => 
[AccountID] => 
[BusinessName] => 
[Salutation] => 
[FirstName] => 
[MiddleName] => 
[LastName] => 
[Suffix] => 
[XMLRequest] => ReturnAllen_USvinhnt.dev@gmail.comNAMEVinh TrungNguyen
[XMLResponse] => 2013-09-20T23:53:51.560-07:00Failurefd4782eabeda17784095580023PLATFORMApplicationErrorApplicationCannot determine PayPal Account status

)

4

1 に答える 1