-
Notifications
You must be signed in to change notification settings - Fork 11
/
AudioCallbackApiDemo.cs
89 lines (84 loc) · 4.14 KB
/
AudioCallbackApiDemo.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
using Newtonsoft.Json.Linq;
using System;
using System.Collections.Generic;
using System.Net.Http;
namespace Com.Netease.Is.Antispam.Demo
{
class AudioCallbackApiDemo
{
public static void audioCallBack()
{
/** 产品密钥ID,产品标识 */
String secretId = "your_secret_id";
/** 产品私有密钥,服务端生成签名信息使用,请严格保管,避免泄露 */
String secretKey = "your_secret_key";
/** 业务ID,易盾根据产品业务特点分配 */
String businessId = "your_business_id";
/** 易盾反垃圾云服务音频离线结果获取接口地址 */
String apiUrl = "http://as.dun.163.com/v3/audio/callback/results";
Dictionary<String, String> parameters = new Dictionary<String, String>();
long curr = (long)(DateTime.UtcNow - new DateTime(1970, 1, 1, 0, 0, 0, DateTimeKind.Utc)).TotalMilliseconds;
String time = curr.ToString();
// 1.设置公共参数
parameters.Add("secretId", secretId);
parameters.Add("businessId", businessId);
// 点播语音版本v3.2及以上二级细分类结构进行调整
parameters.Add("version", "v3.3");
parameters.Add("timestamp", time);
parameters.Add("nonce", new Random().Next().ToString());
// 2.生成签名信息
String signature = Utils.genSignature(secretKey, parameters);
parameters.Add("signature", signature);
// 3.发送HTTP请求
HttpClient client = Utils.makeHttpClient();
String result = Utils.doPost(client, apiUrl, parameters, 10000);
if(result != null)
{
JObject ret = JObject.Parse(result);
int code = ret.GetValue("code").ToObject<Int32>();
String msg = ret.GetValue("msg").ToObject<String>();
if (code == 200)
{
JArray array = (JArray)ret.SelectToken("result");
foreach (var item in array)
{
JObject jObject = (JObject)item;
String taskId = jObject.GetValue("taskId").ToObject<String>();
int asrStatus = jObject.GetValue("asrStatus").ToObject<Int32>();
if (asrStatus == 4)
{
int asrResult = jObject.GetValue("asrResult").ToObject<Int32>();
Console.WriteLine(String.Format("检测失败: taskId={0}, asrResult={1}", taskId, asrResult));
}
else
{
int action = jObject.GetValue("action").ToObject<Int32>();
// 音频数据所在断句详细信息
JArray segmentsArray = (JArray)jObject.SelectToken("segments");
JArray labelArray = (JArray)jObject.SelectToken("labels");
if (action == 0) {
Console.WriteLine(String.Format("结果:通过!taskId={0}", taskId));
} else if (action == 2 || action == 1) {
/*foreach (var labelElement in labelArray)
{
JObject lObject = (JObject)labelElement;
int label = lObject.GetValue("label").ToObject<Int32>();
int level = lObject.GetValue("level").ToObject<Int32>();
}*/
Console.WriteLine(String.Format("结果:{0}!taskId={1}", action == 1 ? "不确定" : "不通过",taskId));
}
}
}
}
else
{
Console.WriteLine(String.Format("ERROR: code={0}, msg={1}", code, msg));
}
}
else
{
Console.WriteLine("Request failed!");
}
}
}
}