Created
October 6, 2014 21:38
-
-
Save jleyva/5c2de2a21c8674dd072d to your computer and use it in GitHub Desktop.
MDL-47545
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<script language="javascript"> | |
function test() { | |
var siteURL = document.getElementById("url").value; | |
var token = document.getElementById("token").value; | |
var data = { | |
"wsfunction": "moodle_webservice_get_siteinfo", | |
"wstoken": token | |
}; | |
var url = siteURL + "/webservice/rest/server.php?moodlewsrestformat=json"; | |
var xhr = new XMLHttpRequest(); | |
xhr.open("POST", url, true); | |
xhr.onreadystatechange = function() { | |
if (xhr.readyState == 4) { | |
document.getElementById("response").innerHTML = xhr.responseText; | |
console.log(xhr.responseText); | |
} | |
}; | |
xhr.setRequestHeader('Content-type', 'application/x-www-form-urlencoded'); | |
var query = []; | |
for (var key in data) { | |
query.push(encodeURIComponent(key) + '=' + encodeURIComponent(data[key])); | |
} | |
xhr.send(query.join('&')); | |
} | |
</script> | |
</head> | |
<body> | |
<h1>CORS test</h1> | |
<p>URL: <input type="text" id="url" value="http://localhost/moodlebugs" size="50"></p> | |
<p>Token: <input type="text" id="token" value="25ff2572a080e1b4144553be1d4a390e" size="50"></p> | |
<input type="button" value="Test!" onclick="test();"> | |
<p>Response...</p> | |
<div id="response"> | |
</div> | |
</body> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment