Skip to main content
1-Visitor
September 3, 2019
Solved

[message: Execution error in service script [ThingName] :: api.objenious.com]

  • September 3, 2019
  • 1 reply
  • 1767 views

Hello!

 

I'm trying to access a URL using the ContentLoaderFunctions snippets GetJSON. The URL I am providing is functional (checked using Postman) and the api key is defined in the header correctly. The Error Log is not providing additional information than that which is provided in the title. 

Can anyone help me understand what is going on here?

 

Thanks!

Best answer by Diveye

Looks like I solved my own problem! Turns out I hadn't configured the right parameters concerning the proxy I was using. Everything works now!

1 reply

5-Regular Member
September 3, 2019

Diveye:

 

   Is it possible for you to paste the snippet to the call here with the parameters you are passing to GetJSON() ?

 

   You can private message me if it's sensitive.

 

   I assume you have permissions to access ThingName?

 

Regards,

-Chris Kaminski

PTC Technical Support

 

Diveye1-VisitorAuthor
1-Visitor
September 4, 2019

Hello ckaminski,

 

Here's the full snipped I am trying to implement:

 

 

var params = {
	proxyScheme: undefined /* STRING */,
	headers: {apikey: "MyAPIKey"} /* JSON */,
	ignoreSSLErrors: undefined /* BOOLEAN */,
	useNTLM: undefined /* BOOLEAN */,
	workstation: undefined /* STRING */,
	useProxy: undefined /* BOOLEAN */,
	withCookies: undefined /* BOOLEAN */,
	proxyHost: undefined /* STRING */,
	url: "https://api.objenious.com/v1/devices/lora:000000000000/messages?type=uplink&limit=1" /* STRING */,
	timeout: 30000 /* NUMBER */,
	proxyPort: undefined /* INTEGER */,
	password: undefined /* STRING */,
	domain: undefined /* STRING */,
	username: undefined /* STRING */
};

// result: JSON
var result = Resources["ContentLoaderFunctions"].GetJSON(params);

 

 

I changed the device ID and the API Key for confidentiality reasons. Concerning the permissions to access ThingName, I'm the creator of the project, shouldn't that guarantee me full access to it? If not, where would I need to go to get the full access? 

 

Thanks!

 

Diveye1-VisitorAuthorAnswer
1-Visitor
September 4, 2019

Looks like I solved my own problem! Turns out I hadn't configured the right parameters concerning the proxy I was using. Everything works now!