Skip to content

Instantly share code, notes, and snippets.

@daiiz
Created December 28, 2014 16:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save daiiz/a2533103ff5c2c68aba7 to your computer and use it in GitHub Desktop.
Save daiiz/a2533103ff5c2c68aba7 to your computer and use it in GitHub Desktop.
var xhr = new XMLHttpRequest();
xhr.open('GET', /* 動的に生成したAPIのURL */, true);
xhr.responseType = 'json';
xhr.onload = function(e) {
/**
* Callback
* e.target.response.statuses にTweets情報が格納されている
*/
}
xhr.send();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment