Skip to content

Instantly share code, notes, and snippets.

@rhaseven7h
Created May 23, 2014 08:27
Show Gist options
  • Save rhaseven7h/edc3d5c5c04cdd1b32f9 to your computer and use it in GitHub Desktop.
Save rhaseven7h/edc3d5c5c04cdd1b32f9 to your computer and use it in GitHub Desktop.
params = "token=palomitas";
xmlhttp = new XMLHttpRequest();
xmlhttp.onreadystatechange = function() {
if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
document.getElementById("mydiv").innerHTML = xmlhttp.responseText;
}
};
xmlhttp.open("POST", "https://itserver.transtelco.net/wrike/api_test", true);
xmlhttp.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
xmlhttp.send(params);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment