에 파일 업로드 내 데스크톱 폴더의 파일을 보관 용 계정의 폴더에 업로드하려고 시도했습니다.보관 용 계정 폴더
하지만이 코드를 통해 빈 파일을 업로드 할 때마다.
어떻게 가능합니까?
아래는 내 코드 S : 당신은 어디서든 업로드 호출에 파일 내용을 추가하는 것 같지 않는
$ch = curl_init();
$TOKEN = "asasasa";//token here
$url = 'https://content.dropboxapi.com/2/files/upload';
curl_setopt($ch,CURLOPT_URL,$url);
curl_setopt($ch,CURLOPT_POST, 1);
curl_setopt($ch,CURLOPT_RETURNTRANSFER, true);
$headers = array();
$headers[] = 'Accept: application/json';
$headers[] = 'Content-Type: multipart/form-data';
$headers[] = 'Dropbox-API-Arg:{"path":"/home/new/ofd","mode":{".tag":"add"},"autorename":false,"mute":false}';
$headers[] = "Authorization: Bearer ".$TOKEN;
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
$response = curl_exec($ch);
$droplist = json_decode($response,true);