소스 검색

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

西昌分支
dyy 7 달 전
부모
커밋
f79d9c876d
1개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  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 파일 보기

@@ -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>


불러오는 중...
취소
저장