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
Nu găsiți un film sau un serial? Autentificați-vă pentru a-l crea.
Doriți să evaluați sau să adăugați acest articol într-o listă?
Nu sunteți membru?
Răspuns de Travis Bell
pe data de 18 aprilie 2017 la ora 7:11 PM
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.Răspuns de Dattatray Hinge
pe data de 19 aprilie 2017 la ora 7:43 AM
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
Răspuns de Travis Bell
pe data de 19 aprilie 2017 la ora 10:57 AM
It's the same as I mentioned above, you can find it from the
vote_average
field:Răspuns de Dattatray Hinge
pe data de 20 aprilie 2017 la ora 1:40 AM
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
Răspuns de Travis Bell
pe data de 21 aprilie 2017 la ora 11:24 AM
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.
Răspuns de Dattatray Hinge
pe data de 21 aprilie 2017 la ora 11:42 AM
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}]
Răspuns de Travis Bell
pe data de 21 aprilie 2017 la ora 11:47 AM
Yes, the data will be the same as the account_states method, but more broadly available across list methods.
Răspuns de Dattatray Hinge
pe data de 21 aprilie 2017 la ora 12:03 PM
oh yes, waiting for new implementation ..