-
Notifications
You must be signed in to change notification settings - Fork 52
/
Copy pathDownloadFileWithFileIdentifier.php
43 lines (36 loc) · 1.94 KB
/
DownloadFileWithFileIdentifier.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
33
34
35
36
37
38
39
40
41
42
43
<?php
require_once __DIR__. DIRECTORY_SEPARATOR .'../../../vendor/autoload.php';
require_once __DIR__. DIRECTORY_SEPARATOR .'../../../Resources/ExternalConfiguration.php';
function DownloadFileWithFileIdentifier()
{
$commonElement = new CyberSource\ExternalConfiguration();
$config = $commonElement->ConnectionHost();
$apiclient = new CyberSource\ApiClient($config);
$api_instance = new CyberSource\Api\SecureFileShareApi($apiclient);
$fileId = "RGVtb19SZXBvcnQtNzg1NWQxM2YtOTM5Ny01MTEzLWUwNTMtYTI1ODhlMGE3MTkyLnhtbC0yMDE4LTEwLTIw";
$api_response = list($response,$statusCode,$httpHeader)=null;
try {
$api_response = $api_instance->getFile($fileId, $organizationId = "testrest");
$downloadData = $api_response[0];
echo "The API Request Header: \n". json_encode($config->getRequestHeaders(), JSON_UNESCAPED_SLASHES)."\n\n";
echo "The Api Response Body: \n";print_r($downloadData);echo "\n\n";
echo "The Api Response StatusCode: ".json_encode($api_response[1])."\n\n";
echo "The Api Response Header: \n".json_encode($api_response[2], JSON_UNESCAPED_SLASHES)."\n";
$filePath = $commonElement->downloadReport($downloadData, "DownloadFileWithFileIdentifier.csv");
echo "File has been downloaded in the location: \n".$filePath."\n";
} catch (Cybersource\ApiException $e) {
echo "The API Request Header: \n". json_encode($config->getRequestHeaders(), JSON_UNESCAPED_SLASHES)."\n\n";
echo "The Exception Response Body: \n";
print_r($e->getResponseBody()); echo "\n\n";
echo "The Exception Response Header: \n";
print_r($e->getResponseHeaders()); echo "\n\n";
echo "The Exception Response Header: \n";
print_r($e->getMessage());echo "\n\n";
}
}
// Call Sample Code
if(!defined('DO_NOT_RUN_SAMPLES')){
echo "[BEGIN] EXECUTION OF SAMPLE CODE: DownloadFileWithFileIdentifier \n\n";
DownloadFileWithFileIdentifier();
}
?>