The Movie Database Подршка

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 одговора (на страни 1 од 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.

Не можеш да нађеш филм или серију? Пријави се да додаш.

Глобално

s фокусирај траку за претрагу
p отворите мени профила
esc затворити отворени прозор
? отвори прозор пречице на тастатури

На страницама медија

b вратити се назад (или родитељу кад је то применљиво)
e иди на страницу за уређивање

На страницама ТВ сезона

(стрелица надесно) пређите на следећу сезону
(лева стрелица) иди на претходну сезону

На страницама ТВ епизода

(стрелица надесно) пређите на следећу епизоду
(лева стрелица) иди на претходну епизоду

На свим страницама са сликама

a отвори прозор за додавање слике

На свим страницама за уређивање

t отвори селектор превода
ctrl+ s пошаљи образац

На страницама за дискусију

n отвори нову дискусију
w мења статус гледања
p мења јавно/приватно
c мења отвори/затвори
a отвори активност
r одговор на дискусију
l иди на последњи одговор
ctrl+ enter пошаљи поруку
(стрелица надесно) следећа страница
(лева стрелица) претходна страница

Подешавања

Желите ли да оцените или додате ову ставку у листу?

Пријави се