I\'m using Retrofit for REST web services my android project. It works fine overall untill the point I\'m trying to read several parameters from the return URL. For exapmle
First create a call then print. See example below:
ApiInterface apiService = ApiClient.getClient().create(ApiInterface.class); Call call = apiService.getLoginData(phone_number.getText().toString()); Log.e(" Login url", call.request().url().toString());