PayPal Rest API - 使用终点

时间:2015-06-23 15:03:05

标签: paypal paypal-sandbox paypal-rest-sdk

在我的Dev环境中,我可以正确地将Rest API用于沙箱站点:

    $sdkConfig = array(
         "mode" => 'sandbox'
    );

    $cred = new OAuthTokenCredential(
        $SANDBOX_clientId,
        $SANDBOX_clientSecret
    );

    $access_token = $cred->getAccessToken($sdkConfig);

在Live Keys和经过验证的真实帐户中使用相同的代码时:

    $sdkConfig = array(
         "mode" => 'live'
    );

    $cred = new OAuthTokenCredential(
        $LIVE_clientId,
        $LIVE_clientSecret
    );

    $access_token = $cred->getAccessToken($sdkConfig);

我收到此错误: 访问https://api.sandbox.paypal.com/v1/oauth2/token

时的Http响应代码401

PayPal REST API如何知道要访问哪个端点?

我没有在沙箱或实时调用中指定端点,也没有使用bootstrap或ini文件。该帐户已经过验证和批准。

1 个答案:

答案 0 :(得分:1)

我建议的最佳方式是创建ApiContext对象,类似https://gist.github.com/jaypatel512/a2b037ab5ddc51fa7280所示

<?php

// 1. Autoload the SDK Package. This will include all the files and classes to your autoloader
require __DIR__  . '/PayPal-PHP-SDK/autoload.php';

// 2. Provide your Secret Key. Replace the given one with your app clientId, and Secret
// https://developer.paypal.com/webapps/developer/applications/myapps
$apiContext = new \PayPal\Rest\ApiContext(
    new \PayPal\Auth\OAuthTokenCredential(
        'AYSq3RDGsmBLJE-otTkBtM-jBRd1TCQwFf9RGfwddNXWz0uFU9ztymylOhRS',     // ClientID
        'EGnHDxD_qRPdaLdZz8iCr8N7_MzF-YHPTkjs6NKYQvQSBngp4PTTVWkPZRbL'      // ClientSecret
    )
);

// Step 2.1 : Between Step 2 and Step 3
$apiContext->setConfig(
  array(
    'mode' => 'live',
    'log.LogEnabled' => true,
    'log.FileName' => 'PayPal.log',
    'log.LogLevel' => 'FINE'
  )
);


// 3. Lets try to save a credit card to Vault using Vault API mentioned here
// https://developer.paypal.com/webapps/developer/docs/api/#store-a-credit-card
$creditCard = new \PayPal\Api\CreditCard();
$creditCard->setType("visa")
    ->setNumber("4417119669820331")
    ->setExpireMonth("11")
    ->setExpireYear("2019")
    ->setCvv2("012")
    ->setFirstName("Joe")
    ->setLastName("Shopper");

// 4. Make a Create Call and Print the Card
try {
    $creditCard->create($apiContext);
    echo $creditCard;
}
catch (\PayPal\Exception\PayPalConnectionException $ex) {
    echo $ex;
}