Exemplo n.º 1
0
        public void Login(string email, string password, string j_captcha = null)
        {
            HttpContent         content = mBuild.Login(email, password, j_captcha);
            HttpResponseMessage rsp     = HttpPost.Post(RequestBuilderCommon.AccountLogin, content);
            JObject             jo      = null;

            if (ResponseParserCommon.AreYouOk(rsp, ref jo))
            {
//                 String key = jo["data"]["global_key"].ToString();
//                 String url = RequestBuilderCommon.Host + "/api/user/key/" + key;
//                 HttpGet.Get(url);
            }
        }