Dropbox v2 API - large file uploads

后端 未结 2 557
别跟我提以往
别跟我提以往 2020-12-22 08:48

This question follows on from my previous question on the same subject. Simple file uploads are, well, simple.

 $headers = array(\"Authorization: Be         


        
2条回答
  •  爱一瞬间的悲伤
    2020-12-22 09:26

    If anyone interested a quick fix on Dropbox API v2 which CURLOPT_INFILE is not working, go to this link Dropbox PHP v2 upload issue

    Greg explain and suggested to used this code curl_setopt($ch, CURLOPT_POSTFIELDS, fread($fp, $filesize)) instead of curl_setopt($ch, CURLOPT_INFILE, $fp);

提交回复
热议问题