Beispiel #1
0
        // 取新API token
        public static GetTokenResponseModel GetNewToken(string account, string password)
        {
            var RS = CommonProxy.GetApiToken(account, password);

            if (RS.access_token != null)
            {
                ApiAccountDAL.SetApiToken(account, RS.access_token);
            }
            return(RS);
        }