1 Star 0 Fork 0

网易易盾/antispam-python-demo

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
mediasolution_submit.py 3.92 KB
一键复制 编辑 原始数据 按行查看 历史
sunlifang 提交于 2022-06-07 14:43 . 完善版本升级
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
易盾反垃圾云服务融媒体解决方案检测提交接口python示例代码
接口文档: http://dun.163.com/api.html
python版本:python3.7
运行:
1. 修改 SECRET_ID,SECRET_KEY 为对应申请到的值
2. $ python mediasolution_submit.py
"""
__author__ = 'yidun-dev'
__date__ = '2020/06/24'
__version__ = '0.2-dev'
import hashlib
import time
import random
import urllib.request as urlrequest
import urllib.parse as urlparse
import json
from gmssl import sm3, func
class MediaSolutionSubmitAPIDemo(object):
"""融媒体解决方案检测提交接口示例代码"""
API_URL = "http://as.dun.163.com/v2/mediasolution/submit"
VERSION = "v2.0"
def __init__(self, secret_id, secret_key):
"""
Args:
secret_id (str) 产品密钥ID,产品标识
secret_key (str) 产品私有密钥,服务端生成签名信息使用
"""
self.secret_id = secret_id
self.secret_key = secret_key
def gen_signature(self, params=None):
"""生成签名信息
Args:
params (object) 请求参数
Returns:
参数签名md5值
"""
buff = ""
for k in sorted(params.keys()):
buff += str(k) + str(params[k])
buff += self.secret_key
if "signatureMethod" in params.keys() and params["signatureMethod"] == "SM3":
return sm3.sm3_hash(func.bytes_to_list(bytes(buff, encoding='utf8')))
else:
return hashlib.md5(buff.encode("utf8")).hexdigest()
def check(self, params):
"""请求易盾接口
Args:
params (object) 请求参数
Returns:
请求结果,json格式
"""
params["secretId"] = self.secret_id
params["version"] = self.VERSION
params["timestamp"] = int(time.time() * 1000)
params["nonce"] = int(random.random() * 100000000)
# params["signatureMethod"] = "SM3" # 签名方法,默认MD5,支持SM3
params["signature"] = self.gen_signature(params)
try:
params = urlparse.urlencode(params).encode("utf8")
request = urlrequest.Request(self.API_URL, params)
content = urlrequest.urlopen(request, timeout=1).read()
return json.loads(content)
except Exception as ex:
print("调用API接口失败:", str(ex))
if __name__ == "__main__":
"""示例代码入口"""
SECRET_ID = "your_secret_id" # 产品密钥ID,产品标识
SECRET_KEY = "your_secret_key" # 产品私有密钥,服务端生成签名信息使用,请严格保管,避免泄露
api = MediaSolutionSubmitAPIDemo(SECRET_ID, SECRET_KEY)
# 私有请求参数
arr: list = []
text = {
"type": "text",
"data": "融媒体文本段落"
}
image = {
"type": "image",
"data": "http://xxx"
}
audio = {
"type": "audio",
"data": "http://xxx"
}
video = {
"type": "video",
"data": "http://xxx"
}
audiovideo = {
"type": "audiovideo",
"data": "http://xxx"
}
file = {
"type": "file",
"data": "http://xxx"
}
arr.append(text)
arr.append(image)
arr.append(audio)
arr.append(video)
arr.append(audiovideo)
arr.append(file)
params = {
"title": "融媒体解决方案的标题",
"content": json.dumps(arr)
}
ret = api.check(params)
# 展示了异步结果返回示例,同步结果返回示例请参考官网开发文档
code: int = ret["code"]
msg: str = ret["msg"]
if code == 200:
result: dict = ret["result"]
antispam: dict = result["antispam"]
taskId: str = antispam["taskId"]
dataId: str = antispam["dataId"]
print("SUBMIT SUCCESS: taskId=%s, dataId=%s" % (taskId, dataId))
else:
print("ERROR: code=%s, msg=%s" % (ret["code"], ret["msg"]))
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/netease_yidun/antispam-python-demo.git
git@gitee.com:netease_yidun/antispam-python-demo.git
netease_yidun
antispam-python-demo
antispam-python-demo
master

搜索帮助