The Movie Database Support

I'm practicing the API currently, what I aim to do is to retrieve the top 350 movies that are released after 2004 and sorted by popularity. What I found out is that filter order affects my result.

so I have this in Python:

for page in range(1, 19):
    conn.request("GET", "/3/discover/movie?page={}&primary_release_date.gte=2004-01-01&with_genres=18&sort_by=popularity.desc&api_key={}".format(page, my_key), payload)

but if I change it to

    conn.request("GET", '/3/discover/movie?page={}&api_key={}&primary_release_data.gte=2004-01-01&sort_by=popularity.desc&with_genres=18'.format(page, my_key), payload)

the movie lists I got are not identical.

Am I doing anything wrong? Or is it supposed to be like this? What's a standard fashion?

Thanks

1 reply (on page 1 of 1)

Jump to last post

No, they should be the same. It looks like you have a typo in your second query:

primary_release_data.gte

You want primary_release_date.gte wink

Can't find a movie or TV show? Login to create it.

Global

s focus the search bar
p open profile menu
esc close an open window
? open keyboard shortcut window

On media pages

b go back (or to parent when applicable)
e go to edit page

On TV season pages

(right arrow) go to next season
(left arrow) go to previous season

On TV episode pages

(right arrow) go to next episode
(left arrow) go to previous episode

On all image pages

a open add image window

On all edit pages

t open translation selector
ctrl+ s submit form

On discussion pages

n create new discussion
w toggle watching status
p toggle public/private
c toggle close/open
a open activity
r reply to discussion
l go to last reply
ctrl+ enter submit your message
(right arrow) next page
(left arrow) previous page

Settings

Want to rate or add this item to a list?

Prijava