/**
 * Get thumbnail from dropbox.com
 * @param string $path
 * @param string $size
 * @return string | boolean
 */
 protected function getThumbnail($path, $size = 'small')
 {
     try {
         return $this->dropbox->getThumbnail($path, $size);
     } catch (Dropbox_Exception $e) {
         return false;
     }
 }