Is there any way to access a database in Idigi storage cloud using .Net application (web application) and web services or API calls ? We need to implement this in one of our projects.
Hi,
You are referring to the temporary data store that is used when devices push up from Python, correct?
You can access this data using the web service located at /ws/data. See more information about it at http://www.digi.com/wiki/developer/index.php/IDigi_Data
Examples would be
HTTP GET to http://developer.idigi.com/ws/data/~/your_device_id/
- retrieves list of files pushed up by the device
HTTP GET to http://developer.idigi.com/ws/data/~/your_device_id/filename.ext
- download the file filename.ext
HTTP DELETE to http://developer.idigi.com/ws/data/~/your_device_id/filename.ext
- used to delete the file when you are done with it
Hi,
Iam not able to access the example links that you have given me.
Thanks,
Anup
You’ll need to make sure to replace your_device_id with the id of the device that is pushing up files.
For example, if it is 00000000-00000000-00AE2040-FE342523, then you would do a GET to:
http://developer.idigi.com/ws/data/~/00000000-00000000-00AE2040-FE342523/
Or if you want to see a list of all the data pushed up and any devices that have pushed up data, you can do a GET to:
http://developer.idigi.com/ws/data/~/
In either case you’ll need to authenticate with your user credentials.