PhilipDaubmeier.NetatmoClient 1.10.0

dotnet add package PhilipDaubmeier.NetatmoClient --version 1.10.0
                    
NuGet\Install-Package PhilipDaubmeier.NetatmoClient -Version 1.10.0
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="PhilipDaubmeier.NetatmoClient" Version="1.10.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="PhilipDaubmeier.NetatmoClient" Version="1.10.0" />
                    
Directory.Packages.props
<PackageReference Include="PhilipDaubmeier.NetatmoClient" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add PhilipDaubmeier.NetatmoClient --version 1.10.0
                    
#r "nuget: PhilipDaubmeier.NetatmoClient, 1.10.0"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package PhilipDaubmeier.NetatmoClient@1.10.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=PhilipDaubmeier.NetatmoClient&version=1.10.0
                    
Install as a Cake Addin
#tool nuget:?package=PhilipDaubmeier.NetatmoClient&version=1.10.0
                    
Install as a Cake Tool

NuGet Build status

NetatmoClient

NetatmoClient is a .NET Core class library with a wrapper for the Netatmo Cloud RESTful JSON web service. It encapsulates all authentication, retry and parsing logic and provides a strongly typed method interface of the Netatmo API.

NuGet

PM> Install-Package PhilipDaubmeier.NetatmoClient

Usage

You have to implement the interface INetatmoConnectionProvider to provide the NetatmoWebClient with all information necessary to authenticate at the API and establish a connection or use the existing NetatmoConnectionProvider.

The minimal viable example for playing around with the client would be as follows:

var netatmoAuth = new NetatmoAuth();
var netatmoConnProvider = new NetatmoConnectionProvider(netatmoAuth)
{
    AppId = "<your_netatmo_connect_app_id>",
    AppSecret = "<your_netatmo_connect_app_secret>",
    Scope = "read_station read_presence access_presence",
    RedirectUri = "http://localhost:4000"
};

var netatmoClient = new NetatmoWebClient(netatmoConnProvider);
var uri = netatmoClient.GetLoginUri();

Console.WriteLine($"Login here: {uri.AbsoluteUri}");

For playing around you can now copy the uri that was written to the console into a browser and log in there. The browser will then redirect to a page that does not exist and will show a "page not found" message. Just use the part after ?code= in the browser address bar and input it into the program, which is shown in the following.

Console.WriteLine("After logging in you should be redirected to a non-existent page.");
Console.WriteLine("Enter the code you see in the browsers address bar behind '?code=':");
var code = Console.ReadLine();
await netatmoClient.TryCompleteLogin(code);

After this step, the auth object will contain a valid access token and also a refresh token. The refresh token can be permanently persisted and loaded after each startup and will automatically be used for refreshing the access token if expired.

Note: in a productive use you will want to launch the login uri in an embedded browser view or redirect to this uri in case of a web application. After sucessful login either capture the resulting uri from the embedded browser or use a productive callback API on your server side.

Note: also, you may want to implement your own INetatmoConnectionProvider and load your client id and redirect uri from a configuration file and store and load refresh tokens across program restarts. You can have a look at the respective classes in GraphIoT.Netatmo as an example for INetatmoAuth and INetatmoConnectionProvider implemenations with storing/loading of configuration, access tokens and refresh tokens.

With being logged in sucessfully and having a valid refresh token in the auth object, you can now go ahead and use the library to actually query station data and measurements:

// Find the id of the first base station of the logged in user
var weatherStation = await netatmoClient.GetWeatherStationData();
var baseStationId = weatherStation.Devices.First().Id;

// Get temperature values of the past 24 hours of the base station
var start = DateTime.Now.AddDays(-1);
var end = DateTime.Now;
var measureTypes = new Measure[] { MeasureType.Temperature };
var measures = await netatmoClient.GetMeasure(baseStationId, baseStationId,
                     measureTypes, MeasureScale.Scale1Hour, start, end);

// Print out all values
foreach (var measure in measures.First().Value)
    Console.WriteLine($"timestamp: {measure.Key} temperature: {measure.Value} °C");

Platform Support

NetatmoClient is targeted for .NET 9.0 or higher.

License

The MIT License (MIT)

Copyright (c) 2019-2024 Philip Daubmeier

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Product Compatible and additional computed target framework versions.
.NET net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net9.0

    • No dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.10.0 83 1/20/2026
1.9.0 249 12/2/2024
1.7.0 812 6/27/2021
1.6.1 736 4/17/2020
1.6.0 629 4/14/2020
1.5.0 693 4/9/2020
1.4.1 658 3/30/2020
1.4.0 682 3/29/2020
1.3.0 668 3/29/2020
1.1.0 701 10/16/2019
1.0.0 676 10/8/2019

1.10.0 - updated domain name of api endpoint after change by Netatmo
1.9.0 - upgraded to target framework net9.0
1.8.0 - upgraded to target framework net8.0
1.7.0 - upgraded to target framework net5.0
1.6.1 - improved exception messages
1.6.0 - widened range of supported platforms by targeting netstandard2.1
1.5.0 - moved to System.Text.Json and removed dependency to Json.NET
1.4.1 - bugfix in CO2 dashboard data
1.4.0 - upgraded to target framework netcoreapp3.1
1.3.0 - included default implementation of INetatmoConnectionProvider
1.2.0-beta1 - added support for HttpClientFactory and Polly. Enabled non-nullable reference types.
1.1.0 - migrated to netcoreapp3.0
1.0.0 - Initial version with publishing version 1.0 of GraphIoT