本文整理匯總了PHP中PayPalAPIInterfaceServiceService::DoVoid方法的典型用法代碼示例。如果您正苦於以下問題:PHP PayPalAPIInterfaceServiceService::DoVoid方法的具體用法?PHP PayPalAPIInterfaceServiceService::DoVoid怎麽用?PHP PayPalAPIInterfaceServiceService::DoVoid使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類PayPalAPIInterfaceServiceService
的用法示例。
在下文中一共展示了PayPalAPIInterfaceServiceService::DoVoid方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: void
public function void()
{
$logger = new PPLoggingManager('DoVoid');
// ## DoVoidReq
$doVoidReq = new DoVoidReq();
// DoVoidRequest which takes mandatory params:
//
// * `Authorization ID` - Original authorization ID specifying the
// authorization to void or, to void an order, the order ID.
// `Important:
// If you are voiding a transaction that has been reauthorized, use the
// ID from the original authorization, and not the reauthorization.`
$doVoidRequest = new DoVoidRequestType("9B2288061E685550E");
$doVoidReq->DoVoidRequest = $doVoidRequest;
// ## Creating service wrapper object
// Creating service wrapper object to make API call and loading
// configuration file for your credentials and endpoint
$service = new PayPalAPIInterfaceServiceService();
try {
// ## Making API call
// Invoke the appropriate method corresponding to API in service
// wrapper object
$response = $service->DoVoid($doVoidReq);
} catch (Exception $ex) {
$logger->error("Error Message : " + $ex->getMessage());
}
// ## Accessing response parameters
// You can access the response parameters using getter methods in
// response object as shown below
// ### Success values
if ($response->Ack == "Success") {
// Authorization identification number you specified in the
// request.
$logger->log("Authorization ID:" . $response->AuthorizationID);
} else {
$logger->error("API Error Message : " . $response->Errors[0]->LongMessage);
}
return $response;
}
示例2: PPLoggingManager
<?php
$path = '../../lib';
set_include_path(get_include_path() . PATH_SEPARATOR . $path);
require_once 'services/PayPalAPIInterfaceService/PayPalAPIInterfaceServiceService.php';
require_once 'PPLoggingManager.php';
/**
* Get required parameters from the web form for the request
*/
$logger = new PPLoggingManager('DoVoid');
$doVoidRequest = new DoVoidRequestType();
$doVoidRequest->AuthorizationID = $_REQUEST['authID'];
$doVoidRequest->Version = '92.0';
$doVoidReq = new DoVoidReq();
$doVoidReq->DoVoidRequest = $doVoidRequest;
$paypalService = new PayPalAPIInterfaceServiceService();
$doVoidResponse = $paypalService->DoVoid($doVoidReq);
echo "<pre>";
print_r($doVoidResponse);
echo "</pre>";
require_once '../Response.php';