php – curl:(26)无法打开文件

前端之家收集整理的这篇文章主要介绍了php – curl:(26)无法打开文件前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
当我试图通过curl调用盒子api时,我收到了这个错误.
curl: (26) couldn't open file

找不到原因!我用正确的文件名称这个api –

curl https://upload.view-api.Box.com/1/documents \
-H "Authorization: Token YOUR_API_TOKEN" \
-H "Content-type: multipart/form-data" \
-F file=@A_correct_file_name

我已经看到了所有三个已经问过的问题,但其中有两个没有答案,一个是针对facebook的.

cURL error 26 couldn’t open file

Fatal error: Uncaught CurlException: 26: couldn’t open file “” thrown in

Getting Fatal Error Uncaught CurlException: 26: couldn’t open file

在更改为PHP 5之后我遇到了类似的问题(我使用的是@ upload方法并且它已被弃用,因此我不得不开始使用CURLFile),并且在此 stack中找到了我的问题的解决方案.

解决方案:curl upload不适用于相对路径,请改用完整路径

猜你在找的PHP相关文章