Hi,
I am tring to test out retrieving data into Ignition using httpClient, but I cannot get it to display any data.
This is the basic script i am running, but it just returns 'None':
client = system.net.httpClient()
url = "http://services.odata.org/V3/OData/OData.svc/Products?$format=json"
response = client.get(url)
print response.json
If I send this URL in Postman it returns the data ok.
Any help would be much appreciated.
Thanks