복붙노트

[JQUERY] jQuery로 JSONP [폐쇄]

JQUERY

jQuery로 JSONP [폐쇄]

해결법


  1. 1.다음은 작업 예입니다 :

    다음은 작업 예입니다 :

    <html><head><title>Twitter 2.0</title>
    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
    </head><body>
    <div id='tweet-list'></div>
    <script type="text/javascript">
    $(document).ready(function() {
        var url =  "http://api.twitter.com/1/statuses/user_timeline/codinghorror.json";
        $.getJSON(url + "?callback=?", null, function(tweets) {
            for(i in tweets) {
                tweet = tweets[i];
                $("#tweet-list").append(tweet.text + "<hr />");
            }
        });
    });
    </script>
    </body></html>
    

    ? 콜백 = 주목? 요청 된 URL의 끝에. 그것은 우리가 JSONP를 사용하고자하는해서 getJSON 함수로 나타냅니다. 를 제거하고 바닐라 JSON 요청이 사용됩니다. 어떤 동일 출처 정책으로 인해 실패합니다.

    당신은 JQuery와 사이트에 대한 자세한 정보와 예제를 찾을 수 있습니다 http://api.jquery.com/jQuery.getJSON/

  2. from https://stackoverflow.com/questions/2681466/jsonp-with-jquery by cc-by-sa and MIT license