forked from angelleye/paypal-php-library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDoAuthorization.php
32 lines (26 loc) · 1.26 KB
/
DoAuthorization.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<?php
// Include required library files.
require_once('includes/config.php');
require_once('includes/paypal.class.php');
// Create PayPal object.
$PayPalConfig = array(
'Sandbox' => $sandbox,
'APIUsername' => $api_username,
'APIPassword' => $api_password,
'APISignature' => $api_signature
);
$PayPal = new PayPal($PayPalConfig);
// Prepare request arrays
$DAFields = array(
'transactionid' => '', // Required. The value of the order's transaction ID number returned by PayPal.
'amt' => '', // Required. Must have two decimal places. Decimal separator must be a period (.) and optional thousands separator must be a comma (,)
'transactionentity' => '', // Type of transaction to authorize. The only allowable value is Order, which means that the transaction represents a customer order that can be fulfilled over 29 days.
'currencycode' => '', // Three-character currency code.
);
$PayPalRequestData = array('DAFields'=>$DAFields);
// Pass data into class for processing with PayPal and load the response array into $PayPalResult
$PayPalResult = $PayPal->DoAuthorization($PayPalRequestData);
// Write the contents of the response array to the screen for demo purposes.
echo '<pre />';
print_r($PayPalResult);
?>