The Movie Database Support

Hello guys in movie part I can use this method GetGenreMoviesAsync for gettin movie by genreid but I also want to get tvshow by genre id in here giving answer is use discover tv show but I cant use it client.DiscoverTvShowsAsync(); can anyone help me pls?

6 replies (on page 1 of 1)

Jump to last post

@dobyvatel said:

Hello guys in movie part I can use this method GetGenreMoviesAsync for gettin movie by genreid but I also want to get tvshow by genre id in here giving answer is use discover tv show but I cant use it client.DiscoverTvShowsAsync(); can anyone help me pls?

I am coding .net project btw

@dobyvatel said:
I want to get tv show by genre id but how ?

@dobyvatel said:
Hello guys
in movie part I can use this method GetGenreMoviesAsync for gettin movie by genreid but I also want to get tvshow by genre id in here giving answer is use discover tv show but I cant use it client.DiscoverTvShowsAsync(); can anyone help me pls?
I am coding .net project btw

As for the code you are using I can't help.
I can tell you which API Request you should make.

@ticao2 said:

@dobyvatel said:
I want to get tv show by genre id but how ?

@dobyvatel said:
Hello guys
in movie part I can use this method GetGenreMoviesAsync for gettin movie by genreid but I also want to get tvshow by genre id in here giving answer is use discover tv show but I cant use it client.DiscoverTvShowsAsync(); can anyone help me pls?
I am coding .net project btw

As for the code you are using I can't help.
I can tell you which API Request you should make.

/// <summary>
/// Can be used to discover new tv shows matching certain criteria
/// </summary>
public DiscoverTv DiscoverTvShowsAsync()
         {
             return new DiscoverTv(this);
         }

I can just use discover tv but I couldnt use it If you know can you help me pls

@dobyvatel said:
I can just use discover tv but I couldnt use it If you know can you help me pls

Search Movies/TV Show with a Specific Genre

First you need to know what Genre ID you want to search for.
The list of Genre IDs is here, for Movie and TV Show.
get/genre/movie/list - https://developers.themoviedb.org/3/genres/get-movie-list
get/genre/tv/list - https://developers.themoviedb.org/3/genres/get-tv-list

In this case, the Comedy Genre ID for Movies/TV Show is 35.

Then you make a Discover API Request
get/discover/movie - https://developers.themoviedb.org/3/discover/movie-discover
get/discover/tv https://developers.themoviedb.org/3/discover/tv-discover
And use the filter &with_genres=35
Example

https://api.themoviedb.org/3/discover/tv?api_key=THE_KEY&language=en-US&sort_by=popularity.desc&page=1&with_genres=35

If you want you can filter by two or more Genres, for example also Crime ID 80
AND (with comma) &with_genres=35,80
OR (with Pipe) &with_genres=35|80
You can use any other filter simultaneously. Year, date etc...

@ticao2 said:

@dobyvatel said:
I can just use discover tv but I couldnt use it If you know can you help me pls

Search Movies/TV Show with a Specific Genre

First you need to know what Genre ID you want to search for.
The list of Genre IDs is here, for Movie and TV Show.
get/genre/movie/list - https://developers.themoviedb.org/3/genres/get-movie-list
get/genre/tv/list - https://developers.themoviedb.org/3/genres/get-tv-list

In this case, the Comedy Genre ID for Movies/TV Show is 35.

Then you make a Discover API Request
get/discover/movie - https://developers.themoviedb.org/3/discover/movie-discover
get/discover/tv https://developers.themoviedb.org/3/discover/tv-discover
And use the filter &with_genres=35
Example

https://api.themoviedb.org/3/discover/tv?api_key=THE_KEY&language=en-US&sort_by=popularity.desc&page=1&with_genres=35

If you want you can filter by two or more Genres, for example also Crime ID 80
AND (with comma) &with_genres=35,80
OR (with Pipe) &with_genres=35|80
You can use any other filter simultaneously. Year, date etc...

I understand what you said okay in coding part arrow_lower_left

[HttpGet]
        public IActionResult GetTVSeries(int genreid)
        {
            var result = client.DiscoverTvShowsAsync(                            );
            return Ok(result);
        }

the blank part I cant use it I didnt see any function any parameter here the actually problem is here.I know most people use it as you explanation. :(

@dobyvatel said:
the blank part I cant use it
I didnt see any function any parameter here the actually problem is here.
I know most people use it as you explanation. :(

If I understand correctly you are using " .NET " programming code.
Perhaps it is using some other associated tool for development.
If this is true it might be better to add this information in the title of this conversation.
For example:
.NET - I want to get tv show by genre id but how ?
Or something similar.
So other users of this code may be interested and post a solution here.

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?

Login