Community Tip - You can change your system assigned username to something more personal in your community settings. X
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!
Solved! Go to Solution.
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!
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
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!
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!