dropbox-php-sdk icon indicating copy to clipboard operation
dropbox-php-sdk copied to clipboard

I would like to use sharingGetSharedLinkFile how does this work with your sdk

Open jenton93 opened this issue 7 years ago • 1 comments

jenton93 avatar Nov 09 '18 15:11 jenton93

From the docs: https://github.com/kunalvarma05/dropbox-php-sdk/wiki/Working-with-Shared-Links-Folders

$dropbox = new Dropbox($app);
$pathToFile = "/hello-world.txt";

$response = $dropbox->postToAPI("/sharing/create_shared_link_with_settings", [
    "path" => $pathToFile
]);

$data = $response->getDecodedBody();

var_dump($data);

dval avatar Jan 07 '20 01:01 dval