forked from LiveCarta/PayPal-PHP-SDK
- Added API Classes, Samples, and Tests - Updated Functional Tests - Updated Documentation with new SDK Name - Updated Few Samples to use newer nicer result page
29 lines
910 B
PHP
29 lines
910 B
PHP
<?php
|
|
|
|
$apiContext = require __DIR__ . '/../bootstrap.php';
|
|
|
|
// ### Retrieve List of All Web Profiles
|
|
// Documentation available at https://developer.paypal.com/webapps/developer/docs/api/#list-web-experience-profiles
|
|
|
|
// Retrieve the list of all web profiles by calling the
|
|
// static `get_list` method on the WebProfile class.
|
|
// (See bootstrap.php for more on `ApiContext`)
|
|
try {
|
|
$list = \PayPal\Api\WebProfile::get_list($apiContext);
|
|
} catch (\Exception $ex) {
|
|
echo "Exception: " . $ex->getMessage() . PHP_EOL;
|
|
if (is_a($ex, '\PayPal\Exception\PPConnectionException')) {
|
|
/** @var $ex \PayPal\Exception\PPConnectionException */
|
|
var_dump($ex->getData());
|
|
}
|
|
exit(1);
|
|
}
|
|
$result = '';
|
|
foreach ($list as $object) {
|
|
$result .= $object->toJSON(128) . PHP_EOL;
|
|
}
|
|
|
|
ResultPrinter::printResult("Get List of All Web Profiles", "Web Profiles", null, null, $result);
|
|
|
|
return $list;
|