1 Star 0 Fork 0

网易易盾 / antispam-python-demo

Create your Gitee Account
Explore and code with more than 12 million developers,Free private repositories !:)
Sign up
This repository doesn't specify license. Please pay attention to the specific project description and its upstream code dependency when using it.
Clone or Download
mediasolution_query.py 4.28 KB
Copy Edit Raw Blame History
sunlifang authored 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,BUSINESS_ID 为对应申请到的值
2. $ python mediasolution_query.py
"""
__author__ = 'yidun-dev'
__date__ = '2019/11/27'
__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 MediaSolutionQueryByTaskIdsDemo(object):
"""融媒体解决方案结果查询接口示例代码"""
API_URL = "http://as.dun.163.com/v2/mediasolution/callback/query"
VERSION = "v2"
def __init__(self, secret_id, secret_key, business_id):
"""
Args:
secret_id (str) 产品密钥ID,产品标识
secret_key (str) 产品私有密钥,服务端生成签名信息使用
business_id (str) 业务ID,易盾根据产品业务特点分配
"""
self.secret_id = secret_id
self.secret_key = secret_key
self.business_id = business_id
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 query(self,params):
"""请求易盾接口
Args:
params (object) 请求参数
Returns:
请求结果,json格式
"""
params["secretId"] = self.secret_id
params["businessId"] = self.business_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()
request = urlrequest.Request(self.API_URL, params)
content = urlrequest.urlopen(request, timeout=10).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" # 产品私有密钥,服务端生成签名信息使用,请严格保管,避免泄露
BUSINESS_ID = "your_business_id" # 业务ID,易盾根据产品业务特点分配
api = MediaSolutionQueryByTaskIdsDemo(SECRET_ID, SECRET_KEY, BUSINESS_ID)
# 私有请求参数
taskIds: list = ['13asfda', 'adsfafd464'] # 查询参数taskIds
params = {
"taskIds": taskIds
}
ret = api.query(params)
code: int = ret["code"]
msg: str = ret["msg"]
if code == 200:
resultArray: list = ret["result"]
if resultArray is None or len(resultArray) == 0:
print("Can't find Callback Data")
else:
for result in resultArray:
antispam: dict = result["antispam"]
if antispam is None:
print("Can't find antispam Data")
else:
checkStatus: int = antispam["checkStatus"]
dataId: str = "" if antispam["dataId"] is None else antispam["dataId"]
suggestion: int = antispam["suggestion"]
callback: str = "" if antispam["callback"] is None else antispam["callback"]
taskId: str = antispam["taskId"]
resultType: int = antispam["resultType"]
evidences: dict = antispam["evidences"]
print("SUCCESS: dataId=%s, taskId=%s, resultType=%s, checkStatus=%s, evidences=%s" % (dataId, taskId, resultType, checkStatus, evidences))
else:
print("ERROR: code=%s, msg=%s" % (ret["code"], ret["msg"]))
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

Search