从自然文本中抽取姓名片段。
测试
您可以在地址标准化产品控制台进行API测试。
请求参数
名称 | 类型 | 是否必选 | 示例值 | 描述 |
Action | String | 是 | ExtractName | 系统规定参数。取值:ExtractName。 |
AppKey | String | 是 | Axqwerasdf1a | 项目AppKey |
ServiceCode | String | 是 | addrp | 固定值:addrp |
Text | String | 是 | 文一西路969号张小明 | 包含一个或多个姓名的一段自然文本 |
DefaultProvince | String | 否 | 浙江省 | 默认省份 |
DefaultCity | String | 否 | 杭州市 | 默认城市 |
DefaultDistrict | String | 否 | 余杭区 | 默认行政区 |
返回数据
名称 | 类型 | 示例值 | 描述 |
Data | String | {"person_extract":[{"start":8,"end":11,"type":"PER","word":"张小明"}],"time_used":{"rt":{"person_extract":"0.013421058654785156"},"start":"1589799959.7144244"},"status":"OK"} | start:原文中字段起始位置 end:原文中字段结束位置 type:字段类型,PER是指person,姓名 word:识别出的实体字段 time_used:算法处理耗时 status:状态 |
RequestId | String | 3A9AB010-AC38-4E53-9D25-6B97238C2897 | RequestId |
示例
请求示例
http(s)://[Endpoint]/?Action=ExtractName
&AppKey=Axqwerasdf1a
&ServiceCode=addrp
&Text=文一西路969号张小明
&<公共请求参数>
正常返回示例
XML
格式
<RequestId>3A9AB010-AC38-4E53-9D25-6B97238C2897</RequestId>
<Data>
<person_extract>
<start>8</start>
<end>11</end>
<type>PER</type>
<word>张小明</word>
</person_extract>
<time_used>
<rt>
<person_extract>0.013421058654785156</person_extract>
</rt>
<start>1589799959.7144244</start>
</time_used>
<status>OK</status>
</Data>
JSON
格式
{
"RequestId": "3A9AB010-AC38-4E53-9D25-6B97238C2897",
"Data": {
"person_extract": [
{
"start": 8,
"end": 11,
"type": "PER",
"word": "张小明"
}
],
"time_used": {
"rt": {
"person_extract": "0.013421058654785156"
},
"start": "1589799959.7144244"
},
"status": "OK"
}
}
错误码
HttpCode | 错误码 | 错误信息 | 描述 |
403 | Forbidden.NoAuth | Failed to perform user authentication. | 用户鉴权失败 |
500 | InternalError | A service error occurred. | 服务内部异常 |
400 | InvalidParameter | The parameter is invalid. | 参数无效 |
404 | ResourceDoesNotExist | The resource does not exist. | 资源不存在 |
429 | Throttling.User | Flow control has been triggered. | 触发流控 |
400 | UserStatusInvalid | The user status is invalid. | 用户状态无效 |
访问错误中心查看更多错误码。