I am trying to access an API using an oauth2 authorization token in Java Here is the client code
DefaultHttpClient httpclient = new DefaultHttpClient();
HttpPost post = new HttpPost("http://res-api");
post.setHeader("Content-Type","application/json");
post.setHeader("Authorization", "Bearer " + finalToken);
JSONObject json = new JSONObject();
// json.put ...
// Send it as request body in the post request
StringEntity params = new StringEntity(json.toString());
post.setEntity(params);
HttpResponse response = httpclient.execute(post);
httpclient.getConnectionManager().shutdown();
This returns a 401.
An equivalent curl command works with no issues with the same token:
curl -H "Content-Type:application/json" -H "Authorization:Bearer randomToken" -X POST -d @example.json http://rest-api
I tried logging out the request and it looks like the authorization is set correctly
DEBUG [2016-06-28 20:51:13,655] org.apache.http.headers: >> Authorization: Bearer authRandomToKen; Path=/; Domain=oauth2-server; Expires=Wed, 29 Jun 2016 20:51:13 UTC
I tried out the curl command by copy-pasting this same token and t works fine
Although I also see this line
DEBUG [2016-06-28 20:51:13,658] org.apache.http.impl.client.DefaultHttpClient: Response contains no authentication challenges
Boomerang
to test this. I use it daily at work for this exactly same issue. – Callaway