我需要通过 Rest 上传文件并发送一些配置。
这是我的示例代码:
$this->login();
$files = array('file'=>'aTest1.jpg');
$data =
array(
'name'=>'first file',
'description'=>'first file description',
'author'=>'test user'
);
$response = Request::post($this->getRoute('test'))
->addHeader('Authorization', "Bearer " . $this->getToken())
->attach($files)
->body(json_encode($data))
->sendsJson()
->send();
我能够发送文件或能够发送正文。但是,如果我尝试两者都行不通...
对我有任何提示吗?
问候 n00n