-
Notifications
You must be signed in to change notification settings - Fork 11
/
DigitalBookSubmitV2ApiDemo.cs
77 lines (71 loc) · 3.13 KB
/
DigitalBookSubmitV2ApiDemo.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
using Newtonsoft.Json.Linq;
using System;
using System.Collections.Generic;
using System.Net.Http;
namespace Com.Netease.Is.Antispam.Demo
{
class DigitalBookSubmitV2ApiDemo
{
public static void digitalBookSubmit()
{
/** 产品密钥ID,产品标识 */
String secretId = "your_secret_id";
/** 产品私有密钥,服务端生成签名信息使用,请严格保管,避免泄露 */
String secretKey = "your_secret_key";
/** 易盾反垃圾融媒体解决方案在线检测接口地址 */
String apiUrl = "http://as.dun.163.com/v2/digital/submit";
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("version", "v2");
parameters.Add("timestamp", time);
parameters.Add("nonce", new Random().Next().ToString());
// 2.设置私有参数
parameters.Add("bookId", "book0001");
parameters.Add("type", "1");
parameters.Add("callback", "i am callback");
JArray jarray = new JArray();
JObject text = new JObject();
text.Add("type", "text");
text.Add("data", "融媒体文本段落");
jarray.Add(text);
JObject image = new JObject();
image.Add("type", "image");
image.Add("data", "http://xxx");
jarray.Add(image);
parameters.Add("bookInformation", jarray.ToString());
// 3.生成签名信息
String signature = Utils.genSignature(secretKey, parameters);
parameters.Add("signature", signature);
// 4.发送HTTP请求
HttpClient client = Utils.makeHttpClient();
String result = Utils.doPost(client, apiUrl, parameters, 1000);
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)
{
JObject resultObject = (JObject)ret["result"];
if(null != resultObject){
JObject antispam = (JObject)resultObject["antispam"];
String taskId = antispam["taskId"].ToObject<String>();
String dataId = null == antispam["dataId"] ? "" : antispam["dataId"].ToObject<String>();
Console.WriteLine(String.Format("SUBMIT SUCCESS: taskId={0}, dataId={1}", taskId, dataId));
}
}
else
{
Console.WriteLine(String.Format("ERROR: code={0}, msg={1}", code, msg));
}
}
else
{
Console.WriteLine("Request failed!");
}
}
}
}