Bläddra i källkod

【修改】移动端微信登录接口优化;

西昌分支
dyy 4 månader sedan
förälder
incheckning
f79d9c876d
1 ändrade filer med 3 tillägg och 3 borttagningar
  1. +3
    -3
      Learun.Framework.Ultimate V7/Learun.Application.WebApi/Modules/WeixinApi.cs

+ 3
- 3
Learun.Framework.Ultimate V7/Learun.Application.WebApi/Modules/WeixinApi.cs Visa fil

@@ -200,7 +200,7 @@ namespace Learun.Application.WebApi.Modules
{
return Fail("手机号不能为空。");
}
var code = redisCache.Read<string>("sendcodeinapp_" + loginModel.codeType + "_" + mobiletemp);
var code = redisCache.Read<string>("sendcodeinapp_" + loginModel.codeType + "_" + mobiletemp, CacheId.sms);
if (!string.IsNullOrEmpty(code) && code == loginModel.verifycode)
{
//return Success("验证成功。");
@@ -400,9 +400,9 @@ namespace Learun.Application.WebApi.Modules
}
catch (Exception e)
{
return Fail("微信授权失败,请重试。"+e.Message);
return Fail("微信授权失败,请重试。" + e.Message);
}
}

/// <summary>


Laddar…
Avbryt
Spara