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
votes
1 answer

Android Studio TMDB dependency

I'm trying to add TMDB wrapper (com.omertron:themoviedbapi:4.0) Into my Android studio project. I added it through the edit libraries and dependencies. But when I run the app after adding it I get some error messages This is the Error I am…
-1
votes
1 answer

How to get ID of any cast using tmdb api?

I want to get ID of particular cast using tmdb api. After that I will use that cast id to discover all the movies of that cast. I just want to know is it possible to fetch Id of any cast by its name?
-1
votes
2 answers

do something at unsuccessful jquery ajax request

My ajax request is hitting an api with rate limits. $.ajax({ url:"https://api.themoviedb.org/xxx", crossDomain: true, dataType: "jsonp", dataObj : index, success: function (response, textStatus, xhr) { …
stallingOne
  • 3,633
  • 3
  • 41
  • 63
-2
votes
1 answer

How to encypt and use TheMovieDB API_KEY for Travis-CI?

I have an android app which shows movies using theMovieDB.org API. I've done the following for encrypting my theMovieDB.org API_KEY for travic CI: gem install --user travis travis encrypt API_KEY = my_api_key --add So, basically, it creates…
Parag Pawar
  • 827
  • 3
  • 12
  • 23
-3
votes
2 answers

Having Error while working with Retrofit lib. JsonSyntaxException

I am practising with retrofit and i am having an error as com.google.gson.JsonSyntaxException: java.lang.IllegalStateException: Expected BEGIN_ARRAY but was NUMBER at line 1 column 31 path $.total_results I am using this api…
1 2 3
12
13