Uncategorized
Publikasi
function send() { var urlvariable; urlvariable = "text"; var ItemJSON;
ItemJSON = '[ { "data": 1, "doc_id": "1", "title": 1, }, { "data": 1, "doc_id": "2", "title": 2, }]';
URL = "http://sinta2.ristekdikti.go.id/api/gsdocs?nidn=0015056802&api_key=a39e735fd5049ba1f7ff0b4e05c9f207&offset=0&limit=20" + urlvariable; //Your URL
var xmlhttp = new XMLHttpRequest();
xmlhttp.onreadystatechange = callbackFunction(xmlhttp);
xmlhttp.open("POST", URL, false);
xmlhttp.setRequestHeader("Content-Type", "application/json");
xmlhttp.setRequestHeader('Authorization', 'Basic ' + window.btoa('apiusername:apiuserpassword')); //in prod, you should encrypt user name and password and provide encrypted keys here instead
xmlhttp.onreadystatechange = callbackFunction(xmlhttp);
xmlhttp.send(ItemJSON);
alert(xmlhttp.responseText);
document.getElementById("div1").innerHTML = xmlhttp.statusText + ":" + xmlhttp.status + "
";
}
function callbackFunction(xmlhttp)
{
//alert(xmlhttp.responseXML);
}
send();
Publikasi Dosen
Imam Much Ibnu Subroto, ST, M.Sc, Ph.D
jgh
Dr. Ir. Suryani Alifah, MT




