Hello guys,
import axios from 'axios';
const options = {
method: 'GET',
url: 'https://api.themoviedb.org/3/discover/tv',
params: {page: '1', with_genres: '28'},
headers: {
accept: 'application/json',
Authorization: 'My token is used here properly'
}
};
axios
.request(options)
.then(function (response) {
console.log(response.data);
})
.catch(function (error) {
console.error(error);
});
This GET request returns nothing for me, an empty results array. Is it something wrong on my side or is there some kind of issue?
Nie mo偶esz znale藕膰 filmu lub serialu? Zaloguj si臋, aby go utworzy膰.
Want to rate or add this item to a list?
Not a member?
Odpowied藕 u偶ytkownika ticao2 馃嚙馃嚪 pt-BR
4 kwietnia 2024 o godz. 11:57AM
Genre 28 - Action, is valid only for Movies.
For TV use the genre 10759 - Action & Adventure
Odpowied藕 u偶ytkownika milan_gl
4 kwietnia 2024 o godz. 2:02PM
Thanks a lot, will try!