Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to set header using http post method

Tags:

android

i am currently working on one application.. in that application i have to use get and post both methods.. get method works properly but in post method suddenly i get the response like

   "invalid method.post required"..

my code for that is:

     String list_url = "************************";
    try {

        String appand = TimeStampForAuth.TimeStameMethod(main.this);
        String auth = android.util.Base64.encodeToString(("iphone" + ":" + 
            "2a5a262d5a")
        .getBytes("UTF-8"), android.util.Base64.NO_WRAP);

        DefaultHttpClient client = new DefaultHttpClient();
        HttpPost post = new HttpPost(list_url+appand);

        Log.d("URL_LIST", list_url+appand);

        List nvps = new ArrayList();
        nvps.add(new BasicNameValuePair("login",Login));
        nvps.add(new BasicNameValuePair("password",password));
        nvps.add(new BasicNameValuePair("title",title));
        nvps.add(new BasicNameValuePair("category_id",cat_id));




        UrlEncodedFormEntity p_entity = new UrlEncodedFormEntity(nvps,HTTP.UTF_8);
        post.addHeader("Authorization", "Basic " + auth);
        post.setEntity(p_entity);
        HttpResponse response = client.execute(post);
        HttpEntity responseEntity = response.getEntity();
        String s = EntityUtils.toString(responseEntity);
        Log.d("List response", s);

    }
    catch(Exception e){
        System.out.println(e.toString());
    }

in that i am missing somethinf or what that i dont know..is all that thing is valid for post method....

please help me as early as possible...

thanking you.........

like image 686
Kutbi Avatar asked Nov 13 '22 18:11

Kutbi


1 Answers

Try using setHeader() instead of addHeader()

like image 160
Jayp Avatar answered Jan 02 '23 04:01

Jayp