有任何人任何想法如何在Dropbox的PHP API http://code.google.com/p/dropbox-php/配合Yii中。我下載的源文件,並把在ext.dropbox,然後插入下面的代碼的Dropbox爲Yii的
$dropbox = Yii::getPathOfAlias('ext.dropbox');
spl_autoload_unregister(array('YiiBase','autoload'));
Yii::registerAutoloader(array('Dropbox_autoload','autoload'));
$consumerKey = '***';
$consumerSecret = '***';
$oauth = new Dropbox_OAuth_PHP($consumerKey, $consumerSecret);
try {
$oauth = new Dropbox_OAuth_PHP($consumerKey, $consumerSecret);
$dropbox = new Dropbox_API($oauth);
$info = $dropbox->getMetaData('Files');
} catch (Exception $e) {
$error = "error: " . $e->getMessage();
}
spl_autoload_register(array('YiiBase','autoload'));
我得到的錯誤致命錯誤:類「CExceptionEvent」在 *
感謝 - 我與你的保持庫中單獨的文件夾,點同意,我將使用它的Yii之外也。我現在會測試這個。再次感謝 – Joe