It seems like somebody edited endpoint 'movies/latest' and I see content from there that seems at least Strange.
I used :
async function displayLatestMovies () { const results = await fetchAPIData('movie/latest'); console.log(results); }
async function fetchAPIData (endpoint) { const API_KEY = 'THE_KEY'; const API_URL = 'https://api.themoviedb.org/3/';
const response = await fetch(`${ API_URL }${ endpoint }?api_key=${ API_KEY }&language=en-US`);
const data = await response.json();
return data;
}
Got this:
{adult: true, backdrop_path: '/iHWMO8r9tyyUG3yKTNwYXejjS3K.jpg', belongs_to_collection: {ā¦}, budget: 0, genres: Array(0), ā¦} adult : true backdrop_path : "/iHWMO8r9tyyUG3yKTNwYXejjS3K.jpg" belongs_to_collection : {id: 1164829, name:** 'Interracial Anal Creampies Collection', poster_path: null, backdrop_path: '/aZSH3VFJf8kpwhfLNO6waF5U7G7.jpg'} budget : 0 genres : [] homepage : "" id : 1164828 imdb_id : null original_language : "en" **original_title : "Interracial Anal Creampies" overview : "Big dicked black studs use and stretch tight, white assholes! White backdoor ladies crave hot anal loads!" popularity : 0 poster_path : "/y1rSe96IaiG1NXxUXBgEQNE1eQ0.jpg" production_companies : [{ā¦}] production_countries : [{ā¦}] release_date : "2020-12-01" revenue : 0 runtime : 190 spoken_languages : [{ā¦}] status : "Released" tagline : "" title : "Interracial Anal Creampies" video : false vote_average : 0 vote_count : 0 [[Prototype]] : Object
Can't find a movie or TV show? Login to create it.
Want to rate or add this item to a list?
Not a member?
Reply by ticao2 š§š· pt-BR
on August 14, 2023 at 8:52 AM
I will replace your API Key with THE_KEY expression.
It is not good to show your Key to all forum users.
Reply by ticao2 š§š· pt-BR
on August 14, 2023 at 9:05 AM
Both the Collection and one of the films were created today.
Maybe you made your API Request before being assigned Adult status.
I checked both movies and both are now in Adult status.
EDIT
Anyway, I don't know if this Latest Request filters adult film.
I do not think so. In the Request I don't see this parameter.
But only admin Travis Bell can shed light on this question.
Reply by frontEndMyFriend
on August 14, 2023 at 10:09 AM
Thank you! Thought that for training project I can type it, but thanks for your advice again)
Reply by frontEndMyFriend
on August 14, 2023 at 10:15 AM
Thank you a lot for checking this. I'm a newbie, and it was my first request to get this endpoint, without filtering and special tricks ..so maybe I'm "lucky" :)