我们需要使用REST API创建节点。 要创建节点的示例xml如下所示
<node>
<type>article</type>
<language>und</language>
<title>This is my new title </title>
<body>
<und is_array="true">
<item>
<value>this is body</value>
<summary></summary>
<format>filtered_html</format>
</item>
</und>
</body>
<path>http://Drupal_server/drupal/testpage</path>
</node>
它正在Drupal中创建新节点,我们不创建Alias。 如果我手动创建内容并在其中添加别名然后检查xml,那么它在 PATH 标记中有正确的URL。 任何人都可以告诉,上面的xml有什么不正确的吗?