I've this call
@Headers("Content-Type: application/json")
@GET("/allMovies/allMovies.txt")
Call<List<Movies>> getAllMovies();
and this json
{
movies: [
{
id: "1000",
name: "Suicide Squad",
year: "2016",
category: "action",
},]}
with this model:
public class Movies {
private String id;
private String name;
private String year;
private String category;
why am i getting
Expected BEGIN_ARRAY but was STRING at line 1 column 1 path $