XMLHttpRequest not defined | Community
Skip to main content
Level 2
September 1, 2022
Solved

XMLHttpRequest not defined

  • September 1, 2022
  • 2 replies
  • 1595 views

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

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by david--garcia

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;

 

 

2 replies

david--garcia
david--garciaAccepted solution
Level 10
September 2, 2022

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;

 

 

Sukrity_Wadhwa
Community Manager
Community Manager
September 14, 2022

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