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
Resposta de Travis Bell
em 9 abril 2021 às 5:34 PM
TMDb has certifications and content ratings (like MPAA, etc.) available in the following two end points:
Cheers.
Resposta de Dan Hinsley
em 20 março 2022 às 2:33 PM
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?
Resposta de ticao2 🇧🇷 pt-BR
em 21 março 2022 às 11:29 AM
I believe there is a small error in your API Request.
You put the " & " character.
The correct character is " ? " .
Resposta de Dan Hinsley
em 21 março 2022 às 3:20 PM
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.
Resposta de Travis Bell
em 21 março 2022 às 5:23 PM
That is a call to TVDB.
Here is an example working call to the
/content_ratings
method:Request
Response
Resposta de Dan Hinsley
em 21 março 2022 às 7:16 PM
Thanks, another question, is there any way to piggyback this onto another call (using append_to_response)?
Resposta de ticao2 🇧🇷 pt-BR
em 22 março 2022 às 10:14 AM
I think so.
It would be this API Request.