Soporte de The Movie Database

I want to get genre id and genre name for specific movie so I am generating this type of query:

http://api.themoviedb.org/3/movie/321612?api_key=xxxxx

and I am getting all the response in my Model class Movie.java but I am getting genre ids and genre name of a specific movie null. I am creating MovieGenre.java class which looks like this:

public class MovieGenres
{
    @SerializedName("id")
    private int id;
    @SerializedName("genre_name")
    private String  genre_name;

    public MovieGenres(int id,String genre_name )
    {
        this.id = id;
        this.genre_name=genre_name;
    }


    public String getGenre_name()
    {
        return genre_name;
    }

    public void setGenre_name(String genre_name)
    {
        this.genre_name = genre_name;
    }

    public int getId()
    {

        return id;
    }

    public void setId(int id) {
        this.id = id;
    }

And Now I am Creating a List variable in the Movie class and Setter and Getter for this variable and the class Movie looks like this:

Movie.java
public class Movie
{
 @SerializedName("movie_genres")
    private List<MovieGenres>movie_genres = new ArrayList<MovieGenres>() ;

Movie(List<MovieGenres> movie_genres)
{
this.movie_genre=movie_genre;
}
public void setMovie_genres(List<MovieGenres> movie_genres)
   {
        this.movie_genres = movie_genres;
    }

 public List<MovieGenres> getMovie_genres()
    {
        return movie_genres;
    }
}

Now the result I am getting is null and I do not want to cache the genres list which is suggested by the API team. So what should I do

7 respuestas (en la página 1 de 1)

Jump to last post

The "get details" method returns an array with the name already provided, so I am not 100% sure I understand the issue.

http://api.themoviedb.org/3/movie/321612?api_key=xxxxx
{
  ...
  "genres": [
    {
      "id": 14,
      "name": "Fantasy"
    },
    {
      "id": 10749,
      "name": "Romance"
    }
  ],
  ...
}

Is that not the data you are trying to use?

Yes this is the data I am trying to retrieve but not not able to retrieve I am getting null

It looks like you're looking a field with the name genre_name and not name. But I don't know Java, so this is a guess.

I have used name also there but no use I still got null response .

Hi @bit_coder

I'm not sure how else I can help, you can see the data in the response. That's about all I can say. Maybe take a look at some of the Java libraries and see how they're grabbing the data.

Ok I will try to solve it btw I am using retrofit library.

i wonder if he founds the solution because i came here after searching the same problem :D but soon i realized that my variable of Genre class is genre not name. changing it to name solve the problem because you need to have same name of the variable as key.

¿No encuentras una película o serie? Inicia sesión para crearla:

Global

s centrar la barra de búsqueda
p abrir menú de perfil
esc cierra una ventana abierta
? abrir la ventana de atajos del teclado

En las páginas multimedia

b retrocede (o a padre cuando sea aplicable)
e ir a la página de edición

En las páginas de temporada de televisión

(flecha derecha) ir a la temporada siguiente
(flecha izquierda) ir a la temporada anterior

En las páginas de episodio de televisión

(flecha derecha) ir al episodio siguiente
(flecha izquierda) ir al episodio anterior

En todas las páginas de imágenes

a abrir la ventana de añadir imagen

En todas las páginas de edición

t abrir la sección de traducción
ctrl+ s enviar formulario

En las páginas de discusión

n crear nueva discusión
w cambiar el estado de visualización
p cambiar público/privado
c cambiar cerrar/abrir
a abrir actividad
r responder a la discusión
l ir a la última respuesta
ctrl+ enter enviar tu mensaje
(flecha derecha) página siguiente
(flecha izquierda) página anterior

Configuraciones

¿Quieres puntuar o añadir este elemento a una lista?

Iniciar sesión