に空のファイルでPHPアーサナライブラリの結果を使用してタスクに添付ファイルを追加します。私はファイルを「追加」するのに成功していますが、タスクでそれらを開くと、それらは完全に空でも破損しています。は、私はPHPのアーサナライブラリ(<a href="https://github.com/Asana/php-asana" rel="nofollow noreferrer">https://github.com/Asana/php-asana</a>)を使用してタスクに添付ファイルを追加しようとしているタスク
私は同じ結果との.png、.DOC、および.PDFすべてを試してみました。私の要求は次のようになります。
$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'
);
私はまた、ファイル名/sites/default/files/webform/change-request-materials/screenshot_from_2016-07-08_140457_8.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のカール要求の2つのバージョンを使用してみました。
第1に:
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をしました。
{"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"}]}
私がそのURLに行ったとき、私はそのファイルについては何も教えてくれませんでしたobj誤りがあります。 PHP-アーサナライブラリとして立ち往生
ビットは、少なくともそこにファイルを置くように見えるが、彼らは空です。カールのリクエストは全く機能しないようですが。
ところで私は、PHP 5.5.9を使用しています。