我正在为 Active Collab 中的创建任务创建 API,并且我已经成功完成了新任务、消息get
和set
截止日期的名称。
但是,当我插入图像或文件时,它不会创建任务。
下面是我的代码,所以请帮我解决它。
try {
API::call('projects/60/tasks/add', null, array(
'task[name]' => $_POST['name'],
'task[body]' => $_POST['message'],
'task[priority]' => $priority,
'task[due_on]' => $date,
'task[assignee_id]' => 21,
), array(
'a.png' /* This array is for attach image to this task but not working in my case and I found this from https://help-classic.activecollab.com/books/api/sdk.html */
));
echo 'Ticket Created Successfully.';
} catch(AppException $e) {
print $e->getMessage() . '<br><br>';
var_dump($e->getServerResponse());
}