Suporte do 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 respostas (na 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.

Não consegue encontrar um certo Filme ou Série? Inicie Sessão e adicione-o.

Geral

s focus the search bar
p abrir menu do perfil
esc close an open window
? open keyboard shortcut window

Em páginas de Média

b go back (or to parent when applicable)
e ir para a página de edição

Em Páginas de Temporadas de Séries

(seta para a direita) ir para a próxima temporada
(seta para a esquerda) ir para a temporada anterior

Em Páginas de Episódios de Séries

(seta para a direita) ir para o próximo episódio
(seta para a esquerda) ir para o episódio anterior

Em Todas as Páginas de Imagens

a abrir janela para adicionar imagem

Em Todas as Páginas de Edição

t open translation selector
ctrl+ s submit form

Em Páginas de Discussão

n criar uma nova discussão
w toggle watching status
p toggle public/private
c toggle close/open
a abrir actividade
r reply to discussion
l ir para a última resposta
ctrl+ enter submit your message
(seta para a direita) página seguinte
(seta para a esquerda) página anterior

Definições

Deseja classificar ou adicionar este item a uma lista?

Iniciar Sessão

Ainda não é um membro?

Crie uma Conta e Adere a Comunidade