Пример #1
0
        public ActionResult CallBack()
        {
            string code         = Request["code"];
            string mall_type_id = Request["mall"];

            int mall = 0;

            if (!int.TryParse(mall_type_id, out mall))
            {
                return(RedirectToAction("Login", new { message = "商城类型丢失,请不要随意更改URL" }));
            }

            if (string.IsNullOrEmpty(code))
            {
                return(RedirectToAction("Login", new { message = "商城授权码丢失,请不要随意更改URL" }));
            }

            AccessManager accessManager = new AccessManager(mall);
            Access_Token  token         = null;

            try
            {
                token = accessManager.AuthorizationCallBack(code);
            }
            catch (KM.JXC.Common.KMException.KMJXCException ex)
            {
                if (ex.Level == Common.KMException.ExceptionLevel.ERROR)
                {
                    return(RedirectToAction("Login", new { message = ex.Message }));
                }
            }
            catch (Exception bex)
            {
                return(RedirectToAction("Login", new { message = "未知错误,请重新授权" }));
            }

            if (token == null)
            {
                return(RedirectToAction("Login", new { message = "授权失败,请重新授权" }));
            }

            FormsAuthentication.RedirectFromLoginPage(token.User_ID.ToString(), false);

            return(Redirect("/Shop/Dashboard"));
        }