I am new to Android Development and I would like to know how to perform a GET request using okhttp. I have referred http://square.github.io/okhttp/, but they only have examples of POST request. I have tried this -
        okHttpClientLogin = new OkHttpClient();
        requestBodyLogin = new FormBody.Builder()
                .addEncoded("name", name_input) // params
                .addEncoded("keys", keys_input) //params
                .build();
        requestLogin = new Request.Builder()
                .addHeader("Authorization", token_type + " " +access_token)
                .url(LOGIN_URL)
                .get()
                .build();
and got an Error :
{"status":{"status":206,"msg":"No record found"},"user":null}
I know why this error is coming, because the params have not been entered. I also tried passing requestBodyLogin inside .get()  but it's not allowing.
 
     
    