サービスモジュールをインストールし、両方taxonomy_term
をtaxonomy_vocabulary
チェックしました。ただし、1つの語彙の用語だけを取得するのに問題があります。私がするときcurl -g "http://domain.com/endpoint/taxonomy_term?args[0]=machine_name_of_vocabulary"
またはcurl -g "http://domain.com/endpoint/taxonomy_term?args[0]=2"
次のようなxml結果が得られます。
<result>
<item>
<tid>2</tid>
<vid>2</vid>
<name>Blue</name>
<description/>
<format>filtered_html</format>
<weight>0</weight>
</item>
<item>
<tid>1</tid>
<vid>5</vid>
<name>Apple</name>
<description/>
<format>filtered_html</format>
<weight>0</weight>
</item>
</result>
これはすべての語彙の用語です。言い換えれば、私は議論が間違っているか、要求が間違っているか、何か他のことが間違っています。
サービスを構成し、1つの語彙のみを取得するようにサービスに要求するにはどうすればよいですか?