Morning Glory (2010)

A young and devoted morning television producer is hired as an executive producer on a long-running morning show at a once-prominent but currently failing station in New York City. Eager to keep the show on air, she recruits a former news journalist and anchor who disapproves of co-hosting a show that does not deal with real news stories.

2010
Drama
Romance
Comedy
6.0
/3PYp95CvjfGaJIaQDWwirbY5Hu7.jpg Poster

Cast

Rachel McAdams
Rachel McAdams
Becky Fuller
Harrison Ford
Harrison Ford
Mike Pomeroy
Jayne Houdyshell
Jayne Houdyshell
Stage Manager
Bruce Altman
Bruce Altman
Television Executive
Rizwan Manji
Rizwan Manji
Daybreak Producer
Rosemary Howard
Rosemary Howard
Hotel Guest (uncredited)
Arden Myrin
Arden Myrin
Day Break Producer
Lorna Guity Pruce
Lorna Guity Pruce
Waitress (uncredited)
Patrick Wilson
Patrick Wilson
Adam Bennett
50 Cent
50 Cent
Self
Reed Birney
Reed Birney
Governor Willis
Patti D'Arbanville
Patti D'Arbanville
Becky's Mom
Jeff Goldblum
Jeff Goldblum
Jerry Barnes
Welker White
Welker White
Daybreak Producer
Matt Malloy
Matt Malloy
Ernie Appleby
Noah Bean
Noah Bean
First Date
Steve Park
Steve Park
Channel 9 Weatherperson
Danielle McKee
Danielle McKee
Daybreak Competitor (uncredited)
Adrian Martinez
Adrian Martinez
IBS Lobby Guard
Linda Powell
Linda Powell
Louanne
David Fonteno
David Fonteno
Oscar
John Pankow
John Pankow
Lenny Bergman
Kevin Pariseau
Kevin Pariseau
Horse Teeth Reporter
Jason Kravits
Jason Kravits
Television Executive
Don Hewitt Sr.
Don Hewitt Sr.
Joe the Cameraperson
Diane Keaton
Diane Keaton
Colleen Peck
Ty Burrell
Ty Burrell
Paul McVee
Paul Urcioli
Paul Urcioli
IBS Evening News Producer
Kathleen McNenny
Kathleen McNenny
Television Executive
Alice Callahan
Alice Callahan
Girl at Schiller's
Maddie Corman
Maddie Corman
Daybreak Producer
Pepper Binkley
Pepper Binkley
Jerry's Assistant
Vanessa Aspillaga
Vanessa Aspillaga
Anna
Lauren Cohn
Lauren Cohn
Crafts Expert
J. Elaine Marcos
J. Elaine Marcos
Lisa Bartlett
Jeff Hiller
Jeff Hiller
Sam - Channel 9 Producer
Jay Russell
Jay Russell
Daybreak Producer
Rick Younger
Rick Younger
Daybreak Producer
Katie Hyde
Katie Hyde
Daybreak Producer
Jeremy Beiler
Jeremy Beiler
Daybreak Producer
Christopher Sieber
Christopher Sieber
Groundhog Reporter
Elizabeth Keifer
Elizabeth Keifer
Jerry's Wife
Bob Schieffer
Bob Schieffer
Self
Morley Safer
Morley Safer
Self
Chris Matthews
Chris Matthews
Self
Don Roy King
Don Roy King
Merv - Daybreak Director
Kristine Nielsen
Kristine Nielsen
Fan
Lisa Landino
Lisa Landino
Daybreak Crew (uncredited)
Donna Sue Jahier
Donna Sue Jahier
Fan of the Weather Man (uncredited)

Images

Morning Glory Poster
Morning Glory Poster

Detailed Information

General Information

Original Title: Morning Glory

Creators: Hwang Dong-hyuk

Gender: Drama, Romance, Comedy,

Duration: 32-82 min

Classification: 16 anos

Production

Budget: $40,000,000.00

Revenue: $60,040,976.00

Awards and Recognitions

  • Emmy Award - Melhor Ator em Série Dramática (Lee Jung-jae)
  • Golden Globe - Melhor Ator Coadjuvante em Série (O Yeong-su)
  • Screen Actors Guild Award - Melhor Elenco em Série Dramática
  • Critics' Choice Television Award - Melhor Série Dramática

Interesting facts

  • A série se tornou a mais assistida da Netflix em seu lançamento.
  • O criador Hwang Dong-hyuk levou mais de 10 anos para desenvolver a série.
  • Os uniformes dos guardas foram inspirados em roupas de ginástica infantis.
  • O jogo "Batatinha Frita 1, 2, 3" é um jogo infantil coreano real.

API

Acesse os dados do filme/série através da nossa API REST. Use o endpoint abaixo para obter informações completas em formato JSON.

Endpoint da API

https://api.moviendb.com/v1/movie/38357

Parâmetros: {type} = "movie" ou "tv" | {id} = ID do filme/série

PHP com cURL

<?php
  $url = "https://api.moviendb.com/v1/movie/38357";

  $ch = curl_init();
  curl_setopt($ch, CURLOPT_URL, $url);
  curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
  $response = curl_exec($ch);
  $httpCode = curl_getinfo($ch, CURLINFO_HTTP_CODE);
  curl_close($ch);

  if ($httpCode === 200) {
    $data = json_decode($response, true);
    print_r($data);
} else {
    echo "Erro: " . $httpCode;
}
?>

PHP com file_get_contents

<?php
$url = "https://api.moviendb.com/v1/movie/38357";

$response = file_get_contents($url);

if ($response !== false) {
    $data = json_decode($response, true);
    print_r($data);
} else {
    echo "Erro ao fazer a requisição";
}
?>

JavaScript com Fetch

const url = 'https://api.moviendb.com/v1/movie/38357';

fetch(url, {
    method: 'GET',
    headers: {
        'Accept': 'application/json',
        'User-Agent': 'MovieDB-Client/1.0'
    }
})
.then(response => {
    if (!response.ok) {
        throw new Error(`HTTP error! status: ${response.status}`);
    }
    return response.json();
})
.then(data => {
    console.log(data);
    // Processar os dados aqui
})
.catch(error => {
    console.error('Erro:', error);
});

Exemplo de Resposta JSON

{
  "id": 93405,
  "name": "Round 6",
  "original_name": "오징어 게임",
  "overview": "Centenas de jogadores falidos aceitam um estranho convite...",
  "first_air_date": "2021-09-17",
  "vote_average": 8.0,
  "vote_count": 14250,
  "genres": [
    {
      "id": 18,
      "name": "Drama"
    },
    {
      "id": 9648,
      "name": "Mistério"
    }
  ],
  "seasons": [
    {
      "season_number": 1,
      "episode_count": 9,
      "air_date": "2021-09-17"
    }
  ],
  "created_by": [
    {
      "name": "Hwang Dong-hyuk"
    }
  ]
}