Expand my Community achievements bar.

Announcing the launch of new sub-community for Campaign Web UI to cater specifically to the needs of Campaign Web UI users!
SOLVED

XMLHttpRequest not defined

Avatar

Level 3

Hello! Im trying to build an API call in the javascript node. But when I try to use the XMLHttpRequest function it says "JST-31000 XMLHttpRequest is not defined. I can't get my head around why it doesnt work.

 

var xhr = new XMLHttpRequest();
var url = "https://condst.maklasde.vitsdc.net/CRM/";


xhr.open("GET", url);

xhr.setRequestHeader("Authorization", "Basic NTgaassdasdsdasdasdNVRVBzeGFmeW1nUm4=");

xhr.onreadystatechange = function () {
   if (xhr.readyState === 4) {
      console.log(xhr.status);
      console.log(xhr.responseText);
   }};

xhr.send();

 

Hope you can help out

 

Regards, Martin

1 Accepted Solution

Avatar

Correct answer by
Community Advisor

Try, you must have the domain whitelisted on the urlpermissions node on serverConf

 

 

 

var url = "https://condst.maklasde.vitsdc.net/CRM/"
logInfo(url)
var req = new HttpClientRequest(url);
req.execute();
var resp = req.response;

 

 

View solution in original post

2 Replies

Avatar

Correct answer by
Community Advisor

Try, you must have the domain whitelisted on the urlpermissions node on serverConf

 

 

 

var url = "https://condst.maklasde.vitsdc.net/CRM/"
logInfo(url)
var req = new HttpClientRequest(url);
req.execute();
var resp = req.response;

 

 

Avatar

Administrator

Hi @marting66652718,

Was the given solution helpful to resolve your query or do you still need more help here? Do let us know.

Thanks!



Sukrity Wadhwa