API凭据不正确

Álv*_*lez 2 php paypal

我试图改编从PayPal API入门指南到PHP 的示例:

<?php

define('PAYPAL_API_USER', '<snip>');
define('PAYPAL_API_PWD', '<snip>');
define('PAYPAL_API_SIGNATURE', '<snip>');
define('PAYPAL_API_APPLICATION_ID', 'APP-80W284485P519543T');

$endpoing = 'https://svcs.sandbox.paypal.com/AdaptiveAccounts/CreateAccount';
$headers = array(
    'X-PAYPAL-SECURITY-USERID' => PAYPAL_API_USER,
    'X-PAYPAL-SECURITY-PASSWORD' => PAYPAL_API_PWD,
    'X-PAYPAL-SECURITY-SIGNATURE' => PAYPAL_API_SIGNATURE,

    'X-PAYPAL-REQUEST-DATA-FORMAT' => 'JSON',
    'X-PAYPAL-RESPONSE-DATA-FORMAT' => 'JSON',

    'X-PAYPAL-APPLICATION-ID' => PAYPAL_API_APPLICATION_ID,

    'X-PAYPAL-DEVICE-IPADDRESS' => '192.0.2.0', // :-? Also tried with my public IP address
    'X-PAYPAL-SANDBOX-EMAIL-ADDRESS' => '<snip>', // Typed my account's e-mail
);
$payload = '{
    "sandboxEmailAddress": "Sender-emailAddress",
    "accountType": "PERSONAL",
    "name": {
        "firstName": "Lenny",
        "lastName": "Riceman"
    },
    "address": {
        "line1": "123 Main St",
        "city": "Austin",
        "state": "TX",
        "postalCode": "78759",
        "countryCode": "US"
    },
    "citizenshipCountryCode": "US",
    "contactPhoneNumber": "512-555-5555",
    "dateOfBirth": "1968-01-01Z",
    "createAccountWebOptions": {
        "returnUrl": "http://www.example.com/success.html"
    },
    "currencyCode": "USD",
    "emailAddress": "lr12345@example.com",
    "preferredLanguageCode": "en_US",
    "registrationType": "Web",
    "requestEnvelope": {
        "errorLanguage": "en_US"
    }
}';
$options = array(
    CURLOPT_SSL_VERIFYPEER => false,
    CURLOPT_HTTPHEADER => $headers,
CURLOPT_POST => false,
CURLOPT_POSTFIELDS => $payload,
    CURLOPT_RETURNTRANSFER => true,
);

try{
    $curl = curl_init($endpoing);
    if(!$curl){
        throw new Exception('Could not initialize curl');
    }
    if(!curl_setopt_array($curl, $options)){
        throw new Exception('Curl error:' . curl_error($curl));
    }
    $result = curl_exec($curl);
    if(!$result){
        throw new Exception('Curl error:' . curl_error($curl));
    }
    curl_close($curl);
    echo $result;
}catch(Exception $e){
    echo 'ERROR: ' . $e->getMessage() . PHP_EOL;
}
Run Code Online (Sandbox Code Playgroud)

......但我总是得到这个:

<?xml version='1.0' encoding='utf-8'?>
<ns3:FaultMessage xmlns:ns3="http://svcs.paypal.com/types/common" xmlns:ns2="http://svcs.paypal.com/types/aa">
    <responseEnvelope>
        <timestamp>2013-03-20T16:33:46.309-07:00</timestamp>
        <ack>Failure</ack>
        <correlationId>7d7fa53e6a930</correlationId>
        <build>5343121</build>
    </responseEnvelope>
    <error>
        <errorId>520003</errorId>
        <domain>PLATFORM</domain>
        <subdomain>Application</subdomain>
        <severity>Error</severity>
        <category>Application</category>
        <message>Authentication failed. API credentials are incorrect.</message>
    </error>
</ns3:FaultMessage>
Run Code Online (Sandbox Code Playgroud)

我已经仔细检查了API凭据(用户,密码和签名),它们与配置文件页面中显示的完全相同.我不完全确定X-PAYPAL-DEVICE-IPADDRESSX-PAYPAL-SANDBOX-EMAIL-ADDRESS.

我怀疑我误读了一些东西或省略了一些卷曲选项.你能发现我的代码中有什么问题吗?

IMS*_*SoP 6

有些无助地,该CURLOPT_HTTPHEADER选项并没有采取部首=>值对,只有字符串列表,其中的每一个必须是完整的HTTP标头的散列.

所以不是$headers = array('X-PAYPAL-SECURITY-USERID' => PAYPAL_API_USER, ...)你需要的$headers = array('X-PAYPAL-SECURITY-USERID: ' . PAYPAL_API_USER, ...)