Gunakan jsonreader.setLenient (true) untuk menerima JSON yang salah di jalur 1 kolom 1

Gson gson = new GsonBuilder()
        .setLenient()
        .create();

Retrofit retrofit = new Retrofit.Builder()
        .baseUrl(BASE_URL)
        .client(client)
        .addConverterFactory(GsonConverterFactory.create(gson))
        .build();
Uptight Unicorn