AmbientWx 1.0.0
See the version list below for details.
dotnet add package AmbientWx --version 1.0.0
NuGet\Install-Package AmbientWx -Version 1.0.0
<PackageReference Include="AmbientWx" Version="1.0.0" />
paket add AmbientWx --version 1.0.0
#r "nuget: AmbientWx, 1.0.0"
// Install AmbientWx as a Cake Addin #addin nuget:?package=AmbientWx&version=1.0.0 // Install AmbientWx as a Cake Tool #tool nuget:?package=AmbientWx&version=1.0.0
AmbientWx
A .Net Core SDK for AmbientWeather.net API
This SDK allows a .Net Core developer to use the API provided by AmbientWeather.net to retrieve weather results from their personal weather station. To use this SDK, you must create a file named AmbientWx.config and place it in the folder with the AmbientWx.dll file. The config file contents should look like this:
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<appSettings>
<add key="ApiKey" value="Your Api Key" />
<add key="ApplicationKey" value="Your Application Key" />
<add key="BaseUrl" value="https://api.ambientweather.net" />
</appSettings>
</configuration>
Be sure to use your apiKey and applicationKey provided by AmbientWeather.net. See their API documentation page here for more information.
How to use the API
Search for AmbientWx on Nuget, then install the package. Since this is .Net Core, it is usable on Windows, MAcs and Linux platforms. Example call: First, ensure you're AmbientWx.config is in place. Then, in your code, make this call:
List<UserDevice> request = UserDevicesRequest.GetUserDevices();
You can then iterate through your devices and the data for each one. See the source code tests for usage as well.
APIs implemented to date:
- UserDevices
APIs Coming Soon
- Device Data
- Real Time
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp2.1 is compatible. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
-
.NETCoreApp 2.1
- Newtonsoft.Json (>= 12.0.1)
- System.Configuration.ConfigurationManager (>= 4.5.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.