-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathclient-with-security.php
executable file
·48 lines (38 loc) · 1.27 KB
/
client-with-security.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
44
45
46
47
48
<?php
use Filestack\FilestackClient;
use Filestack\FilestackSecurity;
use Filestack\Filelink;
use Filestack\FilestackException;
$test_api_key = 'YOUR_FILESTACK_API_KEY';
$test_secret = 'YOUR_FILESTACK_SECURITY_SECRET';
$test_filepath = __DIR__ . '/../tests/testfiles/calvinandhobbes.jpg';
# Filestack client examples
$security = new FilestackSecurity($test_secret);
$client = new FilestackClient($test_api_key, $security);
// upload a file
$filelink = null;
try {
$filelink = $client->upload($test_filepath);
var_dump($filelink);
} catch (FilestackException $e) {
echo $e->getMessage();
echo $e->getCode();
}
// get metadata of file
$fields = [];
$metadata = $client->getMetaData($filelink->url(), $fields);
var_dump($metadata);
// get content of a file
$content = $client->getContent($filelink->url());
// save file to local drive
$filepath = __DIR__ . '/../tests/testfiles/' . $metadata['filename'];
file_put_contents($filepath, $content);
// download a file
$destination = __DIR__ . '/../tests/testfiles/my-custom-filename.jpg';
$result = $client->download($filelink->url(), $destination);
var_dump($result);
// overwrite a file
$filelink2 = $client->overwrite($test_filepath, $filelink->handle);
var_dump($filelink2);
// deleting a file
$client->delete($filelink->handle);