drupal 7 RESTサーバーを使用して画像付きのノードを作成しようとしています。RESTサーバーを適切に構成しました。本文として単純なテキストを使用してノードを作成できます。画像も投稿できるようにします。つまり、表示できるはずです。新しく作成されたノードのイメージ、または少なくともノード本体にイメージをアタッチできる必要がありますか?これまでのところ、このようにしていますが、ノードの本体に画像を添付/表示するにはどうすればよいですか?私はこれを外部PHPスクリプトを介して行っています
$node_data = array(
'title' => "this is test node",
'type' => 'blog',
'body[und][0][value]' => 'this is test node description'
);
$node_data = http_build_query($node_data);
$cookie_session = $logged_user->session_name . '=' . $logged_user->sessid;
// cURL
$curl = curl_init($request_url);
curl_setopt($curl, CURLOPT_HTTPHEADER, array('Accept: application/json')); // Accept JSON response
curl_setopt($curl, CURLOPT_POST, 1); // Do a regular HTTP POST
curl_setopt($curl, CURLOPT_POSTFIELDS, $node_data); // Set POST data
curl_setopt($curl, CURLOPT_HEADER, FALSE); // Ask to not return Header
curl_setopt($curl, CURLOPT_COOKIE, "$cookie_session"); // use the previously saved session
curl_setopt($curl, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt($curl, CURLOPT_FAILONERROR, TRUE);
$response = curl_exec($curl);
$http_code = curl_getinfo($curl, CURLINFO_HTTP_CODE);