i have a web service like " post -H 'Authorization: Token token="2hwhdh443hdhfh43j3jdej3j3"'. how to set this header in httpPost/ get request.
My code is here-
HttpClient client = new DefaultHttpClient();
HttpPost request = new HttpPost(MainActivity.baseUrl
+ "messages");
request.setHeader(new BasicHeader("Content-Type","application/json"));
request.setHeader(new BasicHeader("Authorization: Token","token= 2hwhdh443hdhfh43j3jdej3j3"));
response = client.execute(request);
but this gives HTML response. Please any one can guide me.
Try removing "Content-Type" header and modify "Authorization" to -
request.addHeader("Authorization","Token token=2hwhdh443hdhfh43j3jdej3j3");
Working for me.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With