I'm using OkHttp to get the content of some websites.
However, I'm not able to get the Http-Status Code from the response.
My Java-Code:
OkHttpClient client = new OkHttpClient();
Request request = new Request.Builder()
.url("https://www.google.at")
.build();
Response httpResponse = client.newCall(request).execute();
String html = httpResponse.body().string();
This method:
httpResponse.toString();
Returns the following content:
Response{protocol=http/1.1, code=200, message=OK, url=https://www.google.at}
Is there a way to get the statusCode as an integer, or do I need a Regular Expression to filter it out of this toString()-method?
com.squareup.okhttp.Response
-object, not anorg.apache.http.HttpResponse
object – Caceres