// получаем из базы последние записи
function getUsers(app, start) {
o().config({
method:'GET',
autoFormat: true,
version: 3,
strictMode: false,
headers: [
{
'content-Type': 'application/xml; charset=utf-8',
'Autororization': 'NTLM asdasdas='
}
],
});
console.log(o('http://sample/').get(function (data, err){
if (err){ console.log(err);}
if (data.length) {
console.log("success")}
}))