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 回复(第 1 页,共 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.

找不到电影或剧集?登录并创建它吧。

全站通用

s 聚焦到搜索栏
p 打开个人资料菜单
esc 关闭打开的窗口
? 打开键盘快捷键窗口

在媒体页面

b 返回(或返回上级)
e 进入编辑页面

在电视季页面

(右箭头)下一季
(左箭头)前一季

在电视集页面

(右箭头)下一集
(左箭头)前一集

在所有图像页面

a 打开添加图片窗口

在所有编辑页面

t 打开翻译选择器
ctrl+ s 提交

在讨论页面

n 创建新讨论
w 切换关注状态
p 设为公开 / 私密讨论
c 关闭 / 开放讨论
a 打开活动页
r 回复讨论
l 跳转至最新回复
ctrl+ enter 发送信息
(右箭头)下一页
(左箭头)前一页

设置

想给这个条目评分或将其添加到片单中?

登录

还不是会员?

注册加入社区