private void GetYPLogin(out string msg)
        {
            msg = string.Empty;
            int nId = 0;

            try
            {
                SuperLoginServiceClient client = new SuperLoginServiceClient();
                var tokent = client.GetAccessTokenInType(nCsid, 2).m_AccessToken.ToString();
                msg = "{\"number\":\"0\",\"msg\":\"\",\"token\":\"" + tokent + "\"}";
            }
            catch (Exception ex)
            {
                msg = "{\"number\":\"-1\",\"msg\":\"失败\",\"token\":\"\"}";
            }
        }