Skip to main content
1-Visitor
April 20, 2017
Solved

How to call Thingworx Rest API from Javascript

  • April 20, 2017
  • 3 replies
  • 4187 views

Hi,

I am making REST call from JavaScript to Thingworx Thing to execute service and getting HTTP Status Code 403 - Access to resource forbidden

User has execute service permission also.

var xhttp = new XMLHttpRequest();

xhttp.open("POST", "http://localhost:8080/Thingworx/Things/REST/ServiceDefinitions/service?appKey=5da8484d-2605-458d-af0a-be4d83f5baac", false);

xhttp.setRequestHeader("Content-type", "text/html");

xhttp.withCredentials = true;

xhttp.send();

alert(xhttp.responseText);

Note: Thingworx version 7.4

Please suggest.

Best answer by aagrawal-31

This issue has been resolved.

var xhttp = new XMLHttpRequest();

xhttp.open("POST", "http://localhost:8080/Thingworx/Things/REST/Services/service", false);

xhttp.setRequestHeader("Accept", "application/json");

xhttp.setRequestHeader("Content-type", "application/json");

xhttp.setRequestHeader("appKey", "5da8484d-2605-458d-af0a-be4d83f5baac");

xhttp.withCredentials = true;

xhttp.send();

alert(xhttp.responseText);

3 replies

aagrawal-311-VisitorAuthorAnswer
1-Visitor
April 20, 2017

This issue has been resolved.

var xhttp = new XMLHttpRequest();

xhttp.open("POST", "http://localhost:8080/Thingworx/Things/REST/Services/service", false);

xhttp.setRequestHeader("Accept", "application/json");

xhttp.setRequestHeader("Content-type", "application/json");

xhttp.setRequestHeader("appKey", "5da8484d-2605-458d-af0a-be4d83f5baac");

xhttp.withCredentials = true;

xhttp.send();

alert(xhttp.responseText);

5-Regular Member
April 20, 2017

Hi Abhishek Agrawal​

Please mark your answer as correct to close this Thread.