使用ixudra / curl发布文件存在问题时,会不断反馈无法找到该文件。
Curl::to('https://website.co.uk/path')
->withFile( 'filename', 'file:///home/forge/website/public/uploads/csv/ngrjJAgPOv.csv', 'text/csv', 'filename.csv' )
->post();
我要回复的回应是;
{#601 ▼
+"content": false
+"status": 0
+"contentType": null
+"error": "couldn't open file "file:///home/forge/website/public/uploads/csv/ngrjJAgPOv.csv""
}
我尝试了/public/uploads/csv/ngrjJAgPOv.csv
和/uploads/csv/ngrjJAgPOv.csv
的相对路径,但无济于事。
如果我手动转到网址,文件就在那里,有什么想法吗?