Hi, I am wondering how get ratings of movies and TV show that user sets while user selects like movie now_playing or shows on air Is there any way to load now_playing or on air list with user ratings
¿No encuentras una película o serie? Inicia sesión para crearla:
¿Quieres puntuar o añadir este elemento a una lista?
¿No eres miembro?
Contestado por Travis Bell
el 18 de abril de 2017 a las 19:11
Ho @DattatrayHinge,
When you say user ratings do you mean just the rating of the movie on TMDb? If so, that's returned via the
vote_average
field.Contestado por Dattatray Hinge
el 19 de abril de 2017 a las 07:43
Thanks Travis, I mean is user ratings in number of stars that user given to movie or show but when user fetch Now Playing movies or On Air Show for APIs, didnt see those user ratings in response
Contestado por Travis Bell
el 19 de abril de 2017 a las 10:57
It's the same as I mentioned above, you can find it from the
vote_average
field:Contestado por Dattatray Hinge
el 20 de abril de 2017 a las 01:40
Hi Travis Bell
vote_average is average, what I want to see my ratings given to movie or TV show, like one we get from rated/movies. See "rating":10 is individual user rating
My problem is when user open detail page of Movie or TV Show, I dont have users ratings that he given in previous session. I am not storing this information locally in my APP Or you can suggest way to link rating to movie or TV show details information
Contestado por Travis Bell
el 21 de abril de 2017 a las 11:24
Ah, I see, you're looking for the rating pulled from the session user. I have an open ticket to look at implementing something that will support this here. I haven't decided how it will work yet but it's on my radar.
Cheers.
Contestado por Dattatray Hinge
el 21 de abril de 2017 a las 11:42
Yes, correct I need rating of session user and also need to know whether user has added this movie/TV show in watchlist or favorite list while pulling detail information of movie/Tv show.
What I think if session user append seesion id while pulling movie/TV show details, server can returns something like in json response - user_list[{"ratings": 9 , "watchlist": true, "favorite :" false}]
Contestado por Travis Bell
el 21 de abril de 2017 a las 11:47
Yes, the data will be the same as the account_states method, but more broadly available across list methods.
Contestado por Dattatray Hinge
el 21 de abril de 2017 a las 12:03
oh yes, waiting for new implementation ..