标签:
/* * 登录:输入 */ public void login(String user, String pwd, TextHttpResponseHandler responsehandler) { String url = JxConf.LOGIN; url += "?access_token="; url += savedAccessToken(); RequestParams params = new RequestParams(); params.put("username", user); params.put("password", pwd); if (url != null) { SslRestfulClient sslclient = new SslRestfulClient(context); sslclient.postForm(url, params, responsehandler); } }
通过JxConf.LOGIN找到接口:http://localhost:8888/xixxxb1.1.2/mobile/login
这个接口地址存放在:
标签:
原文地址:http://www.cnblogs.com/hoge/p/5468920.html