This repository has been archived on 2026-04-06. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
PayPal-PHP-SDK/sample/payments/GetAuthorization.php
Jay Patel a471ea1338 Small Sample Fix
- Updated Get Authorization to User Proper Authorization
2015-02-27 14:58:35 -06:00

30 lines
958 B
PHP

<?php
// # GetAuthorization
// This sample code demonstrates how you can get details
// of an authorized payment.
// API used: /v1/payments/authorization/<$authorizationId>
/** @var Authorization $authorization */
$authorization = require 'AuthorizePayment.php';
$authorizationId = $authorization->getId();
use PayPal\Api\Authorization;
use PayPal\Api\Payment;
// ### GetAuthorization
// You can retrieve info about an Authorization
// by invoking the Authorization::get method
// with a valid ApiContext (See bootstrap.php for more on `ApiContext`)
// The return object contains the authorization state.
try {
// Retrieve the authorization
$result = Authorization::get($authorizationId, $apiContext);
} catch (Exception $ex) {
ResultPrinter::printError("Get Authorization", "Authorization", null, null, $ex);
exit(1);
}
ResultPrinter::printResult("Get Authorization", "Authorization", $authorizationId, null, $result);
return $result;