REST API Call [GET]

2020. 3. 1. 01:03Rest API

반응형

Open API : 영화

 

https://www.kobis.or.kr/kobisopenapi/webservice/rest/boxoffice/searchWeeklyBoxOfficeList.json?key=430156241533f1d058c603178cc3ca0e&targetDt=20171110

불러오는 중입니다...

 

index.html

더보기
<!DOCTYPE html>
<html>
  <head>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
    <script src="script.js"></script>
  </head>

  <body>
    <button id="call">클릭!</button>
    <p id="show"></p>
  </body>
</html>

 


script.js

더보기
$(function() {
  $("#call").click(function() {
    $("#show").html("....loading...");

    $.ajax({
      type: "GET",
      url:
        "https://www.kobis.or.kr/kobisopenapi/webservice/rest/boxoffice/searchWeeklyBoxOfficeList.json?key=430156241533f1d058c603178cc3ca0e&targetDt=20171110",
      success: function(data) {
        $("#show").html(JSON.stringify(data));
      }
    });
  });
});

 

 

반응형