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
0 answers

To build an image URL using XMLHttpRequest for TMDB?

How can I build a URL and then get a particular poster of movie using javascript. I went through documentation of TMDB here -> https://developers.themoviedb.org/3/movies/get-movie-images and …
rock stone
  • 473
  • 2
  • 9
  • 20
1
vote
2 answers

How can I slow down API requests?

I'm using a makeServiceCall to get JSON data from TheMovieDB API. As they don't have a list of movie id's I have to for loop through id's. String JSONString = httpHandler.makeServiceCall("https://api.themoviedb.org/3/movie/" + …
1
vote
1 answer

On click popup shows wrong data

I'm making a cinema schedule page for my own use, but I'm facing a problem. I want to make the page popup the info for the movie I click, but it always shows the info for the last movie in the list. I'm sure it's something simple, but I just don't…
1
vote
1 answer

Append query parameter to start of URL using Retrofit

I'm trying to implement the TheMovieDB API using Retrofit and I'm having trouble appending the api key to the beginning of the query. It feels like TheMovieDB is at fault here for having an untraditional way of asking for the api key at the start of…
Zino
  • 196
  • 2
  • 15
1
vote
1 answer

Getting release dates from themoviedb.org API for DVDs

I'm trying to find out how to get movies from themoviedb.org API based on DVD release dates. I only want to return DVD releases and not movies still in the theater. I read somewhere that they now have support for digital release dates. Looking at…
Arvo Bowen
  • 4,524
  • 6
  • 51
  • 109
1
vote
1 answer

Odd behavior while calling ExpressJS REST route

I'm making a simple REST server that wraps around the APIs of TMDb. And I'm using MovieDB Node module which has functions to directly call APIs of TMDb by providing just API key. I have following app folder…
Kushal
  • 3,112
  • 10
  • 50
  • 79
1
vote
1 answer

API Key configuration android

In my app I am going to use The Movies DB API to get most popular movies posters. Kindly need your help with the below issue: every time I try to run my app I get these errors Error:(14, 77) error: expected Error:(14, 53) error: ';'…
Khaled Almanea
  • 168
  • 1
  • 12
1
vote
4 answers

themoviedb 'Access-Control-Allow-Origin' issue

Anyone else having this issue with themoviedb api? XMLHttpRequest cannot load http://api.themoviedb.org/3/search/tv?api_key=XXX&query=mr.%20robot. No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin…
vanzylv
  • 841
  • 2
  • 10
  • 22
1
vote
0 answers

TMDB api how to search exact person

Im trying to fetch information about a person(actor) from TMDB API. My request is http://api.themoviedb.org/3/search/person?query=Rose+Byrne&api_key=(apikey) But this gives me all actors whose names are consist of "Rose Byrne". { …
1
vote
1 answer

Android studio with TheMovieDB.com API wrapper : unable to start activity ComponentInfo and lots of other errors

I am using Android Studio 2.0(preview). In order to display some info about certain movies , I downloaded Themoviedb.com API Wrapper by holgerbrandl , added a dependency but just after I add two lines of the wrapper-related code I get a lot of…
1
vote
2 answers

Rails - method not saving check_box_tag

I am continuing my project on the tmdb api and in the process of saving the result of my query. I created the method add_tmdb to handle this. As for my view, this is what I have: = form_tag :action => 'add_tmdb' do ... stuff here %td=…
1
vote
1 answer

themoviedb - Movie - Status Code 34

I am using themoviedb to query about a specific Movie. I have utilized Discover to get list of movies which works fine. Now based on Id for a specific movie I am attempting get details of the movie. My URL for getting details of movie gives me error…
Dhiren K
  • 21
  • 4
1
vote
2 answers

URL request using Swift

I have access the "dictionary" moviedb for example : https://www.themoviedb.org/search/remote/multi?query=exterminador%20do%20futuro&language=en How can i catch only the film's name and poster from this page to my project in Swift ?
Mercenario
  • 45
  • 1
  • 6
1
vote
1 answer

how to load image of a movie from tmdb json feed

Fragment code //get the posters of movies String urlPOster = null; if (currentMovies.has(KEY_POSTER)) { urlPOster = currentMovies.getString(URL_POSTER +KEY_POSTER); } URL_POSTER…
1
vote
2 answers

ASP.NET MVC 5 getting a JSON result from TMDB API

How is it possible to let users search for a movie using TMDB API (The Movie Db) in an ASP.NET MVC 5 application and return a JSON result. Working example outside VB using my personel api key and returning a json result with all the movies…
Sam
  • 1,303
  • 3
  • 23
  • 41