Advertisement
Guest User

Untitled

a guest
Apr 17th, 2014
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. public void login(Context context, String account, String password, AsyncHttpResponseHandler responseHandler) {
  2. AppUtil.setAuthHeader(context, client);
  3. RequestParams params = new RequestParams();
  4. params.put("account", account);
  5. params.put("password", password);
  6. params.put("from", 1);
  7. client.post(context, IClientUrl.login(), params, responseHandler);
  8.  
  9. http status 400 The request sent by the client was syntactically incorrect
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement