2016-07-08 3 views
0

PHP 아사나 라이브러리 (https://github.com/Asana/php-asana)를 사용하여 작업에 첨부 파일을 추가하려고합니다. 나는 파일을 '추가'하는 데 성공했지만, 작업에서 열면 파일이 완전히 비어 있거나 손상되었습니다.php asana 라이브러리를 사용하여 작업에 첨부 파일을 추가하면 작업에서 빈 파일이됩니다.

enter image description here

내가 모두 같은 결과 .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를 사용하고 있습니다.

답변

1

PHP 라이브러리의 예제 코드를 사용해 보았는데 제대로 작동하는 것 같습니다. createOnTask에 전달하는 인수를 잘못 이해 한 것 같습니다. 또한 업로드하려는 인터넷의 파일 경로를 전달하는 것 같지만 실제로 수행 할 수있는 작업은 업로드하려는 정확한 데이터를 전달하는 것입니다. 필자는 인터넷에서 파일의 내용을 가져 오는 방법을 보여주기 위해 PHP에 익숙하지 않지만, 파일이 로컬 인 경우 file_get_contents를 사용할 수 있습니다.

은의 샘플 코드와 코드를 살펴 보자 :

$demoAttachment = $client->attachments->createOnTask(
    $demoTask->id, 
    "hello world", // Contents of file 
    "upload.txt", // The file name of the attachment 
    "text/plain" // encoding 
); 

을 Heres

$attachment = $client->attachments->createOnTask(
    $task->id, 
    'screenshot_from_2016-07-08_140457.png', // This should be your image data- but like encoded the right way 
    'http://edit.local.org/sites/default/files/webform/change-request-materials/screenshot_from_2016-07-08_140457_8.png', // this should be the filename from above 
    'image/png' 
); 

같은 폴더에있는 이미지와 함께이 작업을 수행 할 수있는 방법의 예

대.

$demoAttachment = $client->attachments->createOnTask(
    $demoTask->id, 
    file_get_contents("someimage.png"), // Contents of file 
    "upload.png", // The file name of the attachment 
    "image/png" // encoding 
); 

참고로 https://asana.com/developers/api-reference/attachments을 참조하십시오.