我想使用PHP通过BOX API从我的BOX帐户下载文件夹和文件。 我可以找到任何示例程序吗?
答案 0 :(得分:0)
您应该使用PHPBox SDK:
https://github.com/crocodoc/php-box-view
以下是使用SDK下载文件的示例:
<强> PHP 强>
$boxView = new Box\View\Client('YOUR_API_KEY');
$document = $boxView->getDocument('DOCUMENT_ID');
$contents = $document->download(); //Store document content inside contents variable
$filename = __DIR__ . '/my-file'; // Will put your document content in a new file named my-file
$handle = fopen($filename, 'w');
fwrite($handle, $contents);
fclose($handle);
答案 1 :(得分:0)
我最近开始编写与Box.com接口的Web应用程序。我发现以下资源对于构建我的第一个Box Web应用程序非常有帮助。请注意,了解OOP,RESTful Web服务等是有帮助的。但是这些资源也可以帮助您在需要时开始学习它们。