Your comments

I see this is really login now. Just do not have time yet to check on real Azure. Maybe someone from support can.


I will try today, but is quite busy yet

SharedAccessSignature  is not a password or login =) I don't know what it is

This does not look like login for me

philips.azure-devices.net/sensor1/DeviceClientType=azure-iot-device%2F1.1.2&api-version=2016-11-14

can you tell me your connection information so i can try?

I just want to have some time and merge it with http send solution here: http://support.iridiummobile.net/topics/12577-http-command-with-added-dynamic-value-and-no-script/


Then we are going to have a full featured http send-receive example, which people without any script knowledge whould be ableto use

Great job, it works! I've made an improvement which helps anyone to use it without getting to script source. You just send drivername, channel and value and it works!


//Control part: send http://[server address]/[driver name],[channel name],[value]
//ex. http://127.0.0.1/ModbusTCP,Channel1,1 
   part = httpRequest.split(",");
   IR.Log("payload: " +part[0] +" " +part[1] +" " +part[2]);
   IR.GetDevice(part[0]).Set(part[1], part[2]);


Here is the project example:

http_server_strings_control_example.sirpz


More improvements are welcome!

Thank you Martin! How to use it? What can we send to it and what to do then?

He wants a script which listens to external http get requests and triggers something within iridium, like Macro or a channel.


Many people asked for that solution