Paypal Permissions 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 を呼び出す別の方法はありますか?
- またはそれらのドキュメントが間違っていますか?