OKHTTP Mengirim dan Menerima Permintaan Jaringan 1

// should be a singleton
OkHttpClient client = new OkHttpClient();

Request request = new Request.Builder()
                     .url("http://publicobject.com/helloworld.txt")
                     .build();
Narongdetch