POST api/textanalytics/getkeyword

输入文章获取关键词

Request Information

URI Parameters

None.

Body Parameters

text文本,需返回关键词个数

ArticleInput
NameDescriptionTypeAdditional information
text

输入的文本

string

None.

count

需返回的关键词个数

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "text": "sample string 1",
  "count": 2
}

application/xml, text/xml

Sample:
<ArticleInput xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FulltextSearch.Models">
  <count>2</count>
  <text>sample string 1</text>
</ArticleInput>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.