Questions tagged [omdbapi]

The OMDb API is a RESTful web service to obtain movie information, all content and images on the site are contributed and maintained by its users. See https://www.omdbapi.com/#usage for usage.

48 questions
1
vote
1 answer

JS returned array not filled with JSON data

I am trying to create an autocomplete search with suggestions from the OMDB API. I used the code written by w3schools' example except tweaked it a little to use an array returned from a separate function but none of the data shows up on the…
1
vote
1 answer

How do i get data from a web api into a c# windows forms app class

I'm trying to make a program in windows forms that can search for movies and series trough a web api. The program then needs to display all relevant information onto a form. I got stuck getting the program to read from the web api. After a lot of…
NDC
  • 29
  • 1
  • 1
  • 7
1
vote
1 answer

OMDB Api Jquery Autocomplete problem rendering

I use omdb api to list the movies and used ajax inside ajax while doing this but having trouble doing rendering. console.log : https://i.stack.imgur.com/bu7bb.png $(function(){ $('#search').autocomplete({ source: function( request,…
0
votes
2 answers

target input value in the form to store in the localStorage after submitting the form and use the value for omdbapi

I wanted to get the value in the input field after clicking the search button and set it in the localStorage then store it in the the searchKey variable and pass it in the main() to search the movies in omdbapi. I tried using the onsubmit in the…
pichimnc
  • 47
  • 5
0
votes
0 answers

How do I use addDoc with Firebase using an image?

This is what I have so far. I'm using the OMDB API, and I'm trying to set it up so that when someone favorites a particular movie, a document is made in the "favorites" collection of firestore that has the title of the movie, the poster from the…
0
votes
0 answers

I getting 401 error when using OMDb api how i can resolve this problem

I am new to web development and I am trying to build a chrome extension that displays imdb scores on netflix. I am using the OMDB API to do this. At first I got the following error: "Mixed Content: The page at '' was loaded over HTTPS, but…
0
votes
1 answer

Query omdbapi.com to get Series\Episode info

I want to get the info for a specific season and episode using PowerShell: $Movies = Invoke-RestMethod "http://www.omdbapi.com/?apikey=$key&s=The Last Ship&season=2&episode=12"# &season=2&episode=2 $Movies.totalResults $movies.Search | where-object…
Paul
  • 3
  • 2
0
votes
0 answers

simple pagination.js does`n set current page as "active" if use it with AJAX request

Im using simplePagination.js. Its changing active pages untill I putted my Ajax request(OMDb API) inside function. In Ajax cooperation it changing items from database, but a problem is: it`s not changing active(current) page. If you have imagine…
0
votes
0 answers

OMDB Api get movies for pagination without having a title or movie name

I am trying to make an android application with a list of movies showing on the home page , and when the user scrolls , the pagination should load more movies. Like this. But I went through the OMDB Api and it seems I can only get movies based on…
Saneen K P
  • 303
  • 1
  • 8
0
votes
3 answers

Delete item from data in reactjs and redux

I am practicing react redux together with oMdb api. I have a method to search movies from the api and add them to a favorites list. The problem comes when I want to remove a movie from the favorites list. Here I show you the code of the…
0
votes
2 answers

Adding data from API calls to an array adds elements correctly, but size is still 0

I'm currently working on a little imdb-like project in React.js using data from the OMDB API. In order to extract data, I'm first compiling a list of imdbIDs, and then calling those endpoints from the API to get more detailed data. However, when I…
Eric Wang
  • 13
  • 4
0
votes
3 answers

Extract JSON Value From Nested List

I am using the OMDb API to pull movie/tv show data using Python. I am trying to get the IMDB, Rotten Tomatoes, and Metacritic ratings from the following JSON. { "title": "One Hundred and One Dalmatians", "year": "1961", "rated": "G", …
Dion Munk
  • 37
  • 7
0
votes
1 answer

Parsing multiple JSON objects that exist in one line in Java

I'm currently using the OMDB API, which can either return get-queries as JSON objects or XML. Working with JSON is something I'd like to learn, and it generally seems like best solution for what I'm trying to do. The implementation I'm hoping for,…
Zonus
  • 11
  • 2
0
votes
1 answer

Get IMDB info using JavaScript

I am trying to get IMDB info using JavaScript. The following code is working for Title, Year, IMDB link but when I am trying to get "Runtime", "Director", "Released" etc I am getting as undefined. Please help! This is the data formate:…
santosh
  • 742
  • 8
  • 19
0
votes
0 answers

OMdb react props.data.map is not a function

I'm trying to display data from the OMdb API, but every time I try using my method nothing works. I want to display the movie posters onto a slider using Spline.js, I was able to successfully do so whenever I manually put in the JSON data into the…
jotarotaroo
  • 73
  • 1
  • 5