I have to setup a proxy to send a JSON using POST, using proxyHost and proxyPort.
public static final MediaType JSON = MediaType.parse(\"application/json; charse
Found the solution:
OkHttpClient client = new OkHttpClient.Builder().proxy(proxyTest).build();
If we use the builder to input the proxy, it will work like a charm =D