私はJavaScriptリクエストを実行しようとしています:
var s = document.createElement('script');
s.src = "https://api.instagram.com/v1/media/popular?client_id=" + client_id + "&count=12";
s.addEventListener( 'load', function(){ s.parentNode.removeChild(s); } );
(document.head||document.documentElement).appendChild(s);
console.log(s);
コンソール出力:
<script src="https://api.instagram.com/v1/media/popular?client_id=myclientid&count=12"></script>
そして、この url、json を返します。このリクエストを実行できますか?