KoenZomers.Ring.Api 0.2.2

There is a newer version of this package available.
See the version list below for details.
dotnet add package KoenZomers.Ring.Api --version 0.2.2
NuGet\Install-Package KoenZomers.Ring.Api -Version 0.2.2
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="KoenZomers.Ring.Api" Version="0.2.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add KoenZomers.Ring.Api --version 0.2.2
#r "nuget: KoenZomers.Ring.Api, 0.2.2"
#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.
// Install KoenZomers.Ring.Api as a Cake Addin
#addin nuget:?package=KoenZomers.Ring.Api&version=0.2.2

// Install KoenZomers.Ring.Api as a Cake Tool
#tool nuget:?package=KoenZomers.Ring.Api&version=0.2.2

Contains a Ring API that can be used to communicate with the Ring Doorbell services API

Product Compatible and additional computed target framework versions.
.NET Framework net is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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
0.5.4 104 4/5/2024
0.5.3 163 9/2/2023
0.5.2 220 7/3/2023
0.5.1 122 7/3/2023
0.5.0.1 649 9/14/2022
0.5.0 448 9/14/2022
0.4.4 450 9/14/2022
0.4.3.2 1,189 4/29/2020
0.4.3.1 506 3/18/2020
0.4.3 486 3/18/2020
0.4.2.2 499 3/18/2020
0.4.2.1 560 1/22/2020
0.4.2 600 1/2/2020
0.4.1 558 12/24/2019
0.4.0.3 480 12/23/2019
0.4.0.2 492 12/23/2019
0.4.0.1 510 12/23/2019
0.4.0 522 12/23/2019
0.3.5 548 10/27/2019
0.3.4 539 10/4/2019
0.3.3 544 10/4/2019
0.3.2 581 8/9/2019
0.3.1 528 8/9/2019
0.3.0.2 796 3/3/2019
0.3.0.1 558 3/2/2019
0.2.2.1 821 9/13/2018
0.2.2 906 7/1/2018
0.2.1 815 6/28/2018
0.2.0 911 8/18/2017
0.1.0 887 8/13/2017

- Ring seems to have switched off their old API command support. Updated the methods to use the new API.
- Added static `Api.Session.GetSessionByRefreshToken(string refreshToken)` method to support using OAuth Refresh Tokens for getting an Access Token.
- Ring seems to have introduced throttling protection against too many requests sent to their API which seems to kick in pretty easily. I've added a specific `Api.Exceptions.ThrottlingException` to notify you if the request has failed due too throttling. Just try it again in a few minutes and it typically works again. Check the `InnerException` of it for the glory details on why it failed.
- Added property `OAuthToken` on the `Api.Session` class which gives you access to the full OAuth Token retrieved during authentication against the Ring API.