Remove credit card samples (#896)

* removed credit card payment samples
* update docs to reflect sample changes
* update readme to recommend braintree for direct card payments
This commit is contained in:
Randy
2017-08-03 10:32:26 -05:00
committed by GitHub
parent e3aadb48c2
commit 14e814d74b
23 changed files with 81 additions and 756 deletions

View File

@@ -3,8 +3,7 @@
// This sample code demonstrates how you can reauthorize a PayPal
// account payment.
// API used: v1/payments/authorization/{authorization_id}/reauthorize
/** @var Authorization $authorization */
$authorization = require 'AuthorizePayment.php';
use PayPal\Api\Amount;
use PayPal\Api\Authorization;
@@ -16,10 +15,16 @@ use PayPal\Api\Authorization;
// days after the 3-day honor period for the original authorization
// has expired.
// Replace $authorizationId with any static Id you might already have.
$authorizationId = "<your authorization id here>";
try {
$authorization = Authorization::get($authorizationId, $apiContext);
$amount = new Amount();
$amount->setCurrency("USD");
$amount->setTotal(1);
$amount->setTotal(1200);
// ### Reauthorize with amount being reauthorized
$authorization->setAmount($amount);
@@ -32,4 +37,4 @@ try {
}
// NOTE: PLEASE DO NOT USE RESULTPRINTER CLASS IN YOUR ORIGINAL CODE. FOR SAMPLE ONLY
ResultPrinter::printResult("Reauthorize Payment", "Payment", $authorization->getId(), null, $reAuthorization);
ResultPrinter::printResult("Reauthorize Payment", "Payment", $authorizationId, null, $reAuthorization);