Netflix Clone with TMDB Api
Working Netfix Clone made using Swift MVVM, Core Data, TMDB movie database API and Youtube API.
Before starting you need get a API key for TMDB API and Youtube API
- Get TMDB API key at https://developers.themoviedb.org/
- Get Youtube API key at https://console.cloud.google.com/
struct Constants {
static let G_API_KEY = "" // Youtube API Key
static let APIKEY = "" // TMDB API Key
static let baseURL = "https://api.themoviedb.org"
static let imageURL = "https://image.tmdb.org"
}