Drupal 7 - REST API - 创建别名

时间:2015-11-03 08:11:34

标签: xml rest drupal drupal-7

我们需要使用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有什么不正确的吗?

0 个答案:

没有答案