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