I believe there is a small error in your API Request.
You put the " & " character.
The correct character is " ? " .
Would be like this
https://api.themoviedb.org/3/tv/1408/content_ratings?api_key=THE_KEY
Not this
https://api.themoviedb.org/3/tv/1408/content_ratings&api_key=<key>&language=en
Odpověď od Travis Bell
09.04.2021 v 5:34 ODP.
TMDb has certifications and content ratings (like MPAA, etc.) available in the following two end points:
Cheers.
Odpověď od Dan Hinsley
20.03.2022 v 2:33 ODP.
I get a null response when I enter:
https://api.themoviedb.org/3/tv/1408/content_ratings&api_key=&language=en
Is this the correct format?
Odpověď od ticao2 🇧🇷 pt-BR
21.03.2022 v 11:29 DOP.
I believe there is a small error in your API Request.
You put the " & " character.
The correct character is " ? " .
Odpověď od Dan Hinsley
21.03.2022 v 3:20 ODP.
Oops. So I tried:
https://api4.thetvdb.com/v4/tv/1408/content_ratings?language=en
Supplying my token in the Authorization header (like I do for all calls), but still get a null return.
Odpověď od Travis Bell
21.03.2022 v 5:23 ODP.
That is a call to TVDB.
Here is an example working call to the
/content_ratings
method:Request
Response
Odpověď od Dan Hinsley
21.03.2022 v 7:16 ODP.
Thanks, another question, is there any way to piggyback this onto another call (using append_to_response)?
Odpověď od ticao2 🇧🇷 pt-BR
22.03.2022 v 10:14 DOP.
I think so.
It would be this API Request.