HttpPost httpPost = new HttpPost("MyWebsiteURL");
try {
httpPost.setEntity(new StringEntity("https://www.googleapis.com/plus/v1/people/me?key="+token));
HttpResponse httpResponse = httpClient.execute(httpPost);
HttpEntity httpEntity = httpResponse.getEntity();
InputStream is = httpEntity.getContent();
BufferedReader reader = new BufferedReader(new InputStreamReader(
is, "iso-8859-1"), 8);
StringBuilder sb = new StringBuilder();
String line = null;
while ((line = reader.readLine()) != null) {
sb.append(line + "\n");
}
is.close();
String json = sb.toString();
Log.i("JSON", json);
} catch (UnsupportedEncodingException e) {
e.printStackTrace();
} catch (ClientProtocolException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
Execute HttpPost with google token in android is not fetching JSON data
750 Views Asked by ashokgujju At
3
There are 3 best solutions below
4

First you cannot pass parameter like this in http post, use below code for your use, there might be some compilation error as am not using and IDE for checking code which am posting, main point is to show you how to pass post parameters using http post, which is by using NameValuePairs, please adjust your url accordingly
try {
HttpPost httppost = new HttpPost("https://www.googleapis.com/plus/v1/people/me");
List<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>(1);
nameValuePairs.add(new BasicNameValuePair("key", "12345"));
httppost.setEntity(new UrlEncodedFormEntity(nameValuePairs));
HttpResponse httpResponse = httpClient.execute(httpPost);
HttpEntity httpEntity = httpResponse.getEntity();
InputStream is = httpEntity.getContent();
BufferedReader reader = new BufferedReader(new InputStreamReader(
is, "iso-8859-1"), 8);
StringBuilder sb = new StringBuilder();
String line = null;
while ((line = reader.readLine()) != null) {
sb.append(line + "\n");
}
is.close();
String json = sb.toString();
Log.i("JSON", json);
} catch (UnsupportedEncodingException e) {
e.printStackTrace();
} catch (ClientProtocolException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
0

This is the posting for authentication. This will return a HttpResponse containing the access token in which you will use when you do a HttpGet request.
try {
Log.i(tag, "Starting doHTTPPost");
List<NameValuePair> pairs = new ArrayList<NameValuePair>();
pairs.add(new BasicNameValuePair("KEY", "VALUE"));
/* EXAMPLE of pairs */
pairs.add(new BasicNameValuePair("client_id","theGreatSecret12345"));
pairs.add(new BasicNameValuePair("username", "purple"));
pairs.add(new BasicNameValuePair("password", "asjdf098732hkndfa"));
HttpClient client = new DefaultHttpClient();
HttpPost post = new HttpPost("The API Server you want to access");
post.setEntity(new UrlEncodedFormEntity(pairs));
HttpResponse response = client.execute(post);
HttpResponse apiResponse = response;
String resultFromServerAsAString = EntityUtils.toString(response.getEntity());
Log.i(tag, "Response statusCode : "+response.getStatusLine().getStatusCode());
Log.i(tag, "Response StatusLine : "+response.getStatusLine());
Log.i(tag, "Ending doHTTPPost");
} catch (UnsupportedEncodingException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
There is a Difference between POST and GET method...
In GET METHOD you can pass data with URL....
but in POST method you can not pass data with URL... you have to pass it as entity......... Do the following for Passing Data To the URL
Try This..
For your solution You should pass
Where,