我有一個控制器將圖像上傳到我的Web服務器。我希望在該過程中將該圖像上傳到Dropbox。我會怎麼做?如何將文件從codeigniter應用程序上傳到Dropbox
這是我簡單的upload.php的控制器:
function index() {
// get the binary data
$file = file_get_contents("php://input");
// prepare new name for upload image
$name =rand().time().'jpg';
$path = site_url('photo');
// save to server directory
file_put_contents($path.$name, $file);
// save the name and id of the post to post photo table
$input = array( 'name' => $name,
'post_id'=> $id
);
$this->db->insert('post_photo', $input);
}
一個好的開始就是看[Dropbox API](https://www.dropbox.com/developers/core/start/php),甚至是專門爲codeigniter編寫的插件,[就像這樣](https://github.com/jimdoescode/CodeIgniter-Dropbox-API-Library) – Darren 2015-04-01 07:40:32
Dropbox是否支持電子郵件上傳Imgur文件?這將很容易設置 – Marie 2015-04-01 13:59:12