Dropbox php-api を学習しようとしています。アップロードは完了しましたが、Dropbox アカウントに新しいフォルダー (存在しない場合) を作成できません
コードスニペット :
// Create new directory
$create_new_folder = $dropbox->createFolder('new_folder','dropbox');
// Create a temporary file and write some data to it
$tmp = tempnam('/tmp', 'dropbox');
$data = 'This file was uploaded using the Dropbox API!';
file_put_contents($tmp, $data);
// Upload the file with an alternative filename
$put = $dropbox->putFile($tmp, 'abc.txt');
// Unlink the temporary file
unlink($tmp);
// Dump the output
var_dump($put);
エラー:
C:\wamp\www\BenTheDesigner-Dropbox-b49576c\examples\putFile.php の 18 行目で、未定義のメソッド Dropbox\API::createFolder() を呼び出します。