我正在尝试使用 Paypal 权限 SDK:https ://github.com/paypal/permissions-sdk-php
特别是他们的代码片段:
// Pass in a dynamically created API credential object
$cred = new PPCertificateCredential("username", "password", "path-to-pem-file");
$cred->setThirdPartyAuthorization(new PPTokenAuthorization("accessToken", "tokenSecret"));
$response = $permissions->RequestPermissions($request, $cred);
但是,我没有“accessToken”或“tokenSecret”,如果我理解正确,您首先需要使用 Permissions API 来检索它们。无限循环???
- 我是不是误会了什么?
- 还是有另一种使用动态设置凭据调用 API 的方法?
- 还是他们的文件不正确?