Questions tagged [themoviedb-api]

The TheMovieDB API is a simple API for getting community built content for movies and actors from TheMovieDB site

TMDb is a free and community maintained movie database. It has a huge database of movies, actors, facts and all related details. It's similar to IMDB, but open to all. You need either a free or commercial API key to access the API. There are few wrapper libraries for languages like PHP, C#, and Java.

For more information, visit https://www.themoviedb.org/.

185 questions
1
vote
1 answer

TMDb API URL for upcoming movie

i am trying to get upcoming movie information from tmdb. And i used following url https://api.themoviedb.org/3/movie/latest/?api_key=myKEY and i am getting this message {"status_code":34,"status_message":"The resource you requested could be…
Sahidul Islam
  • 489
  • 5
  • 18
1
vote
1 answer

Getting Information from TMDB

Currently I am stuck I want to return the title, plot and poster using themoviedb api I have no idea how to start the coding for this Currently when i run a search the information is display in the console log of the browser i want to take that…
Jamiex304
  • 242
  • 1
  • 7
  • 26
1
vote
2 answers

How to parse this string received from TMDB in iOS

I am getting the popular movie data from TMDB in my iOS App. however i am having great trouble in parsing and getting the meaningful data from it. I am totally new to iOS. i have done similar thing in Windows Phone, where i created Poco's and used…
Avijeet
  • 365
  • 4
  • 14
1
vote
1 answer

How to find by foreign id?

I try to get a result by themovidb API with a thetvdb ID I'm not sure what I'm doin wrong Documentation My try to access the API http://api.themoviedb.org/3/find/71663?api_key=XXX My result {"status_code":6,"status_message":"Invalid id - The…
Lucas
  • 3,376
  • 6
  • 31
  • 46
1
vote
1 answer

Extract Info from TMDB and save to Rails DB

I have a rails movie app and the movie info that will be featured on the site will be from TMDB. Using the TMDB-Ruby gem, i can already produce results (info) from a movie, but now i need to know how to extract that returned info and save it to my…
PMP
  • 231
  • 6
  • 25
0
votes
0 answers

exporting an importing a js file in react is not working

I am trying to import a script in react from a file but it is returning in a way that I do not want it to return. It is messing up the project. Here is the code for both files: Certification.js: const fetchCertification = async (type, id) => { …
0
votes
2 answers

How to remove objects from arrays which have a certain attribute in react js

I have an array like this in ReactJS where I have some data for the regions GB (UK) and US (USA): { "id": 603692, "results": [ { "iso_3166_1": "GB", "release_dates": [ { "certification": "", …
0
votes
0 answers

The results comes back empty from the API call swiftUI

I'm busy making an app that generates random movie options. The information comes from the Movie Database API, but for some reason it only shows movies from page 1. When I make the API call, in the console log it show's the call going out correctly.…
0
votes
0 answers

Issue at OnResponse callback in MainActivity.kt

Would you help me please? There is an error refer to OnResponse in MainActivity.kt Can you find where is the issue? FATAL EXCEPTION: main Process: com.example.movieapp, PID: 22955 java.lang.NullPointerException at…
0
votes
0 answers

IntersectionObserver keeps stopping at the same entry, infinite scrolling doesn't work

I'm using TheMovieDatabase API, and I'm making a movie website. I want to load the Top Rated Movies, but the intersectionobserver method I added just keeps stopping at the same movie. Any help would be highly appreciated.