Procházet zdrojové kódy

Merge branch '黑龙江艺术高中职' of http://8.141.155.183:3000/bjquanjiang/DigitalScholl into 黑龙江艺术高中职

黑龙江艺术高中职
yxq před 1 měsícem
rodič
revize
40d8081319
2 změnil soubory, kde provedl 10 přidání a 1 odebrání
  1. +9
    -1
      Learun.Framework.Ultimate V7/Learun.Application.WebApi/Modules/AttendanceApi.cs
  2. +1
    -0
      Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Util/Learun.Util/Web/HttpMethods.cs

+ 9
- 1
Learun.Framework.Ultimate V7/Learun.Application.WebApi/Modules/AttendanceApi.cs Zobrazit soubor

@@ -130,8 +130,16 @@ namespace Learun.Application.WebApi.Modules
string imgid = parameter.Img;

var url = Config.GetValue("FaceCheckApi");
try
{

result = Util.HttpMethods.HttpGet($"{url}{userimg}/{imgid}");
result = Util.HttpMethods.HttpGet($"{url}{userimg}/{imgid}");
}
catch (Exception e)
{

return Fail($"照片验证超时!{e.Message}");
}
}
if (result == "1")
{


+ 1
- 0
Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Util/Learun.Util/Web/HttpMethods.cs Zobrazit soubor

@@ -110,6 +110,7 @@ namespace Learun.Util
public static string HttpGet(string url)
{
WebRequest myWebRequest = WebRequest.Create(url);
myWebRequest.Timeout = 20000;
WebResponse myWebResponse = myWebRequest.GetResponse();
Stream ReceiveStream = myWebResponse.GetResponseStream();
string responseStr = "";


Načítá se…
Zrušit
Uložit