0

关于新的 Paypal SDK,几乎没有有用的示例代码,互联网上充斥着旧 SDK 的示例。我的问题涉及对我通过权限 API 获得令牌和 secretToken 的第三方贝宝帐户发出 API 请求。

在尝试构造 PPAPIService 对象时,可能的服务名称列表在哪里?
即:$this->serviceName = $serviceName; (在构造函数中)这些的字符串语法是什么?

关于 makeRequest 方法,如何定义 $apiMethod 变量,以及 $params 变量的格式是什么?有哪些不同的参数?

如何获取授权第三方账户的账户余额的简单示例将非常有帮助。我正在使用 PHP。

从 PPAPIService.php 文件:

class PPAPIService
{
public $endpoint;
public $serviceName;
private $logger;

public function __construct($serviceName = "")
{
    $this->serviceName = $serviceName; //is there ANY documentation about the syntax and types of service names?
    $config = PPConfigManager::getInstance();
    $this->endpoint = $config->get('service.EndPoint');
    $this->logger = new PPLoggingManager(__CLASS__);
}

public function setServiceName($serviceName)
{
    $this->serviceName = $serviceName;
}


public function makeRequest($apiMethod, $params, $apiUsername = null, $accessToken = null, $tokenSecret = null)
{
//what are the apiMethod types? syntax? and params? type.. options...??
}
}
4

2 回答 2

3

好吧,您不必直接创建 PPAPIService 对象。假设您想使用 Invoicing SDK,这就是您要执行的操作

$invoiceService = new InvoiceService();
$invoiceService->setAccessToken($accessToken);
$invoiceService->setTokenSecret($tokenSecret);
$createInvoiceResponse = $invoiceService->CreateInvoice($createInvoiceRequest);

每个 API 都有一个服务类(例如此代码片段中的 InvoiceService),您可以根据需要对其进行实例化。API 用户名/密码是从配置文件中挑选出来的,访问令牌/令牌秘密是通过代码设置的,因为它们通常对于不同的调用往往是不同的。

顺便说一句,您要调用哪个 API?

于 2012-09-24T16:06:09.500 回答
0

为了回答您的其他问题,新的 PayPal SDK 将所有必需的示例捆绑在 SDK 本身中。SDK + 示例可从以下网址下载

https://www.x.com/developers/paypal/documentation-tools/paypal-sdk-index

于 2012-09-27T16:36:24.247 回答