PHP 아사나 라이브러리 (https://github.com/Asana/php-asana)를 사용하여 작업에 첨부 파일을 추가하려고합니다. 나는 파일을 '추가'하는 데 성공했지만, 작업에서 열면 파일이 완전히 비어 있거나 손상되었습니다.php asana 라이브러리를 사용하여 작업에 첨부 파일을 추가하면 작업에서 빈 파일이됩니다.
내가 모두 같은 결과 .PNG, .DOC, .pdf와 시도했다. 내 요구는 다음과 같습니다 : 나는 또한 파일 이름 /sites/default/files/webform/change-request-materials/screenshot_from_2016-07-08_140457_8.png
에 대한 상대 경로를 사용하여 시도했지만 같은 결과를 얻을 수있다
$attachment = $client->attachments->createOnTask(
$task->id,
'screenshot_from_2016-07-08_140457.png',
'http://edit.local.org/sites/default/files/webform/change-request-materials/screenshot_from_2016-07-08_140457_8.png',
'image/png'
);
.
라이브러리에서 사용한 '예제 코드'는 매우 간단합니다.
// add an attachment to the task
$demoAttachment = $client->attachments->createOnTask(
$demoTask->id,
"hello world",
"upload.txt",
"text/plain"
);
또한 내가 첨부 파일이 전혀 작동 할 수 있다면 바로 볼 수
https://asana.com/developers/api-reference/attachments의 컬 요청이 버전을 사용했습니다.
먼저 하나.
curl -H "Authorization: Bearer <personal_access_token>" https://app.asana.com/api/1.0/tasks/152938418205845/attachments --form "[email protected]://edit.local.org/sites/default/files/webform/change-request-materials/screenshot_from_2016-07-08_140457_12.png;type=image/png"
이
curl: (26) couldn't open file "http://edit-fca.local.org/sites/default/files/webform/change-request-materials/screenshot_from_2016-07-08_140457_12.png"
결과 내가 파일 및 파일이있는 폴더에 777을했습니다 그래서 나는 제거하기로 결정했다 '@'앞에 다음 파일로 얻은 : 그 URL에 갔다
{"errors":[{"message":"file: File is not an object","help":"For more information on API status codes and how to handle them, read the docs on errors: https://asana.com/developers/documentation/getting-started/errors"}]}
정말 나에게 파일이 아닌 OBJ에 대해 아무것도 말하지 않았다 오류가 발생했습니다.
php-asana 라이브러리로 고정 된 비트는 파일을 저장하는 것으로 보이지만 비어 있습니다. 컬 요청은 전혀 작동하지 않는 것처럼 보입니다.
Btw PHP 5.5.9를 사용하고 있습니다.