コード例 #1
0
ファイル: ImageSyncScanSample.cs プロジェクト: drcwr/godemos
        public static void Test()
        {
            // create your profile
            DefaultProfile profile = new DefaultProfile("cn-shanghai", "<your access key id>", "<your access key secret>");
            AliYunClient   client  = new AliYunClient(profile);

            ClientInfo clientInfo = new ClientInfo();

            clientInfo.ip = "127.0.0.1";

            // image scan task
            Task imageTask = new ImageTask("https://xxx.png");

            imageTask.dataId = Guid.NewGuid().ToString();
            BizData imageBizData = new BizData("Image", new String[] { "p**n" }, new Task[] { imageTask });

            string  algoPath = "/green/image/scan";
            Request req      = new Request(imageBizData, algoPath);

            req.addQueryParameter("clientInfo", JSON.stringify(clientInfo));

            string response = client.getResponse(req);

            // your biz code
            Console.WriteLine(response);

            Console.ReadKey();
        }
コード例 #2
0
        public static void Main()
        {
            // create your profile
            DefaultProfile profile = new DefaultProfile("cn-shanghai", "<your access key id>", "<your access key secret>");
            AliYunClient   client  = new AliYunClient(profile);

            ClientInfo clientInfo = new ClientInfo();

            clientInfo.ip = "127.0.0.1";

            // text scan task
            string content  = "测试";
            Task   textTask = new TextTask(content);

            textTask.dataId = Guid.NewGuid().ToString();
            textTask.time   = DateTime.Now.Millisecond;
            BizData textBizData = new BizData("Text", new String[] { "antispam" }, new Task[] { textTask });


            string  algoPath = "/green/text/scan";
            Request req      = new Request(textBizData, algoPath);

            req.addQueryParameter("clientInfo", JSON.stringify(clientInfo));

            string response = client.getResponse(req);

            // your biz code
            Console.WriteLine(response);

            Console.ReadKey();
        }