🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
[TOC] ### 接口说明 > 这个操作会将违法行为内容报告给相应的执法机构。 > * 美国失踪和受虐儿童中心(NCMEC) > 以后将增加更多报告机构。 ### 请求Url `[POST] https://api-westus.microsoftmoderator.com/v1/Violation/Report` ### 请求头部(headers) | 字段 | 类型 | 描述 | | -- | -- | -- | | Content-Type (可选) | string | 发送到API的媒体类型。 | | Ocp-Apim-Subscription-Key | string | 提供访问该接口的订阅密钥。在您的个人资料中可以找到。 | ### 请求体(body) | 字段 | 描述 | 可选 | | -- | -- | -- | | OrgName | 这是组织的名称 | 必填 | | ReporterName | 报告者姓名 | 必填 | | ReporteeName | 要举报的人/组织名称 | 必填 | | ReporteeIPAddress | 违法行为所在服务器的IP地址 | 必填 | | IncidentTime | 事发日期时间 | 必填 | | AdditionalMetadata | 附加选项的键-值对集合 | 可选 | | ViolationContentCollection | 所报告的内容<br>它是一组包含下列内容的集合:<br>Value:报告内容的Base-64编码<br>Location (可选):被标记的内容在,全球定位系统中的位置<br>AdditionalMetadata (可选):附加选项的键-值对集合 | 必填 | > ~~~ { "OrgName": "TestOrg", "ReporterName": "Reporter1", "IncidentTime": "9/10/2014 9:08:14 PM", "ReporteeName": "Reportee1", "ReporteeIPAddress": "0.0.0.0", "ViolationContentCollection": [ { "Value": "Base 64 image string", "Location": null, "AdditionalMetadata": [] } ], "AdditionalMetadata": [], "OrgId": 1, "TrackingId": "1" } > ~~~