D-Link Forums

The Graveyard - Products No Longer Supported => IP Cameras => DCS-825L => Topic started by: cloudbase64 on August 24, 2016, 07:51:10 AM

Title: DCS-825L temperature url
Post by: cloudbase64 on August 24, 2016, 07:51:10 AM
Hi,
Is it possible to get url for temperature info (to include in my domotic system).
Same as http://IPADDRESS/image/jpeg.cgi  = > http://IPADDRESS/temp/tdC.cgi ?
Many thank's
Title: Re: DCS-825L temperature url
Post by: FurryNutz on September 06, 2016, 10:29:23 AM
Any status on this?  ???
Title: Re: DCS-825L temperature url
Post by: cloudbase64 on September 07, 2016, 09:07:22 AM
After asking D-link customer service and explore web, ...nothing more :-(
Title: Re: DCS-825L temperature url
Post by: FurryNutz on September 07, 2016, 09:12:38 AM
Maybe something that isn't supported.  :-\
Title: Re: DCS-825L temperature url
Post by: evanjd on October 01, 2016, 05:33:35 AM
You can't use this from a browser, but if you enable temperature alerts from the app or My D-Link, you can pull temp readouts from the following URL:

http://CAMIP/users/notify_stream.cgi

You need to pass your auth credentials in the header, if successful you'll get a stream that spits out temps every second. It looks like this:

Quote
tpC=22
tpF=71

tpC=22
tpF=71

tpC=22
tpF=71

tpC=22
tpF=71

tpC=22
tpF=71

Here's an example of how to view the output using cURL. You'll need to replace the auth header with a hash that matches your credentials:

Code: [Select]
curl -X GET -H "Authorization: Basic YOURPASSHASHHERE” "http://CAMIP/users/notify_stream.cgi"
Title: Re: DCS-825L temperature url
Post by: cloudbase64 on October 06, 2016, 06:26:20 AM
Wahou, many thank's for your answer !
I'm going to try with this  ;)