Skip to content

Latest commit

 

History

History
28 lines (17 loc) · 1.59 KB

README.md

File metadata and controls

28 lines (17 loc) · 1.59 KB

MyIMDb Clone

My clone of the popular IMDb movie database website using OMDb API.

There are more than one separate project inside:

  • omdb_vanilla_js - The version using only vanilla JavaScript and OMDb
  • omdb_vue - This version relies on VUE.js and OMDb
  • omdb_react - This is React version with OBDb API of the above

For OMDb, use this link to get the API KEY

All data requests go to: http://www.omdbapi.com/?apikey=[yourkey]&

There are two (2) types of requests that can be made to the API:

  • By ID (i) or Title (t) - where parameters i or t must be set to IMDB ID or Movie title respectively.
  • By Search (s) - where parameter s must me set to a term to search for.

The return value asked for can be filtered by:

  • type : movie, series or episode
  • y : set this to year of release
  • plot : short or full - in case if i or t parametars were used
  • page : which page to return 1..100, defaults to 1 - in case if s parameter was used