koush AndroidAsync Library Content-Type can't change

156 Views Asked by At

I want to make post http request using AndroidAsync library but i can't change the content-type to 'application/x-www-form-urlencoded' for request

AsyncHttpPost post = new AsyncHttpPost(LOGIN_URL);
MultipartFormDataBody body = new MultipartFormDataBody();
body.addStringPart("grant-type", "password");
body.addStringPart("username", userName);
body.addStringPart("password", password);
body.setContentType("application/x-www-form-urlencoded")
post.setBody(body);

AsyncHttpClient.getDefaultInstance().executeJSONObject(url, new     AsyncHttpClient.JSONObjectCallback() {
// Callback is invoked with any exceptions/errors, and the result, if available.
@Override
public void onCompleted(Exception e, AsyncHttpResponse response, JSONObject result) {
    if (e != null) {
        e.printStackTrace();
        return;
    }
    System.out.println("I got a JSONObject: " + result);
}
});

I don't know what to do.

0

There are 0 best solutions below