I think you can delete modules that are no longer installed.
You have to do it on https://home.netatmo.com or from the smartphone app.
Search found 14 matches
- Sunday 27 April 2025 7:49
- Forum: Temperature and Weather
- Topic: Netatmo authentication changes Oct 2022
- Replies: 401
- Views: 60134
- Saturday 26 April 2025 20:02
- Forum: Temperature and Weather
- Topic: Netatmo authentication changes Oct 2022
- Replies: 401
- Views: 60134
Re: Netatmo authentication changes Oct 2022
What Types off devices do you Have ? These are most likely additional weather modules (the small modules). This would mean three (or two) homes declared in your installation given the number of modules. I assume you removed additional modules? The IDs of these modules are still attached to a main ...
- Saturday 26 April 2025 11:49
- Forum: Temperature and Weather
- Topic: Netatmo authentication changes Oct 2022
- Replies: 401
- Views: 60134
Re: Netatmo authentication changes Oct 2022
Always in error ... Sorry but this is not again stable :( The error messages are not related to authentication but to requests on the weather modules. These queries are only made after authentication. So the authentication worked. It's a cloud problem, disconnection of the weather modules at the ...
- Wednesday 16 April 2025 9:00
- Forum: Temperature and Weather
- Topic: Netatmo authentication changes Oct 2022
- Replies: 401
- Views: 60134
- Thursday 10 April 2025 0:23
- Forum: Temperature and Weather
- Topic: Netatmo authentication changes Oct 2022
- Replies: 401
- Views: 60134
Re: Netatmo authentication changes Oct 2022
@JurgenLB fixed the issue here:
https://github.com/domoticz/domoticz/pull/6297
https://github.com/domoticz/domoticz/pull/6297
- Tuesday 08 April 2025 21:02
- Forum: Temperature and Weather
- Topic: Netatmo authentication changes Oct 2022
- Replies: 401
- Views: 60134
Re: Netatmo authentication changes Oct 2022
Hello everyone. I'm glad I could help the Domoticz community by proposing the header solution with user-agent: https://github.com/domoticz/domoticz/issues/6280#issuecomment-2764622607 And taken up by @chrominator to make the PR. ๐ I don't know Domoticz, but I do know the Netatmo API. Hopefully that w ...
- Saturday 05 April 2025 18:12
- Forum: Temperature and Weather
- Topic: Netatmo authentication changes Oct 2022
- Replies: 401
- Views: 60134
Re: Netatmo authentication changes Oct 2022
I've just compiled a version after having added a user agent, and it works fine (start/restart/reboot). Since it is not the first time I compile a version that works first and fails after a while, I'll wait a bit before saying it's successful. https://github.com/domoticz/domoticz/issues/6280 ...
- Monday 24 March 2025 12:07
- Forum: Temperature and Weather
- Topic: Netatmo authentication changes Oct 2022
- Replies: 401
- Views: 60134
Re: Netatmo authentication changes Oct 2022
You can follow my post above to check your access_token and access to the Netatmo server.
- Sunday 23 March 2025 15:53
- Forum: Temperature and Weather
- Topic: Netatmo authentication changes Oct 2022
- Replies: 401
- Views: 60134
Re: Netatmo authentication changes Oct 2022
I'm not surprised. You're receiving a json file because the API is working, which I've been reporting since March 20th. The URL query bug only lasted a few hours. The problem lies elsewhere. You need to look into the connection with the third-party application (on the Netatmo side) or the Domoticz ...
- Sunday 23 March 2025 14:26
- Forum: Temperature and Weather
- Topic: Netatmo authentication changes Oct 2022
- Replies: 401
- Views: 60134
Re: Netatmo authentication changes Oct 2022
You can run this test to verify if the API is working. In a browser like Chrome, type this line: https://api.netatmo.com/api/homesdata?access_token=xyz Make sure to replace xyz with your valid access_token (not the refresh_token), without single or double quotes. You should receive a JSON response ...
- Thursday 20 March 2025 14:09
- Forum: Temperature and Weather
- Topic: Netatmo authentication changes Oct 2022
- Replies: 401
- Views: 60134
Re: Netatmo authentication changes Oct 2022
@phil35 In PHP there are no more problems related to this failure. I wasn't using a cURL query, I wrote the code yesterday and it worked directly, before this morning's fix. This morning's fix on the Netatmo side allowed my old URL query to work as before. I published my codes if it can help. I make ...
- Thursday 20 March 2025 10:20
- Forum: Temperature and Weather
- Topic: Netatmo authentication changes Oct 2022
- Replies: 401
- Views: 60134
Re: Netatmo authentication changes Oct 2022
Issue fixed with Netatmo, both query methods are now functional again. Everything is back to normal. 
- Thursday 20 March 2025 4:25
- Forum: Temperature and Weather
- Topic: Netatmo authentication changes Oct 2022
- Replies: 401
- Views: 60134
Re: Netatmo authentication changes Oct 2022
Check with nslookup, api.netatmo.com and api.netatmo.net return the same IP addresses. I use both.homeJLB wrote: โWednesday 19 March 2025 23:29 In the Beta we use theas described by https://dev.netatmo.com/apidocumentation/oauthCode: Select all
#define NETATMO_API_URI "https://api.netatmo.com/"
- Wednesday 19 March 2025 22:24
- Forum: Temperature and Weather
- Topic: Netatmo authentication changes Oct 2022
- Replies: 401
- Views: 60134
Re: Netatmo authentication changes Oct 2022
I identified the problem. homestatus no longer works with a URL request as shown in netatmo.dev, only works with a cURL request like this one in PHP that I use via a class: protected $_apiurl = 'https://api.netatmo.net/'; NO LONGER WORKS with URL request Edit: Working again after Netatmo fixed the ...