Date | 2023-02-13 (641 days ago) |
---|---|
Downloads | 1,734 downloads |
NuGet | View on NuGet |
GitHub | View on GitHub |
Target Frameworks | .NET Standard 1.3 .NET Standard 2.0 .NET 7 |
#installation
">InstallationInstall via NuGet - either via the .NET CLI:
dotnet add package Skybrud.Social.Instagram --version 1.0.0-beta008
or the NuGet package manager:
Install-Package Skybrud.Social.Instagram -Version 1.0.0-beta008
#changelog
">ChangelogUpdated the Skybrud.Essentials.Http dependency (see 831a44b
)
With this release, the dependency is updated from v1.1.0
to v1.1.4
. Changes include:
Added support for nullable reference types (see d2d5df5
)
The package now natively uses nullable reference types for improved quality and code analysis.
Improved exception handling (see de316b6
)
This release introduces some additional exception classes that can describe specific errors in greater detail.
Added support for specifying the API version to be used (see 274a8fa
)
For the implementation for the Instagram Graph API, the package doesn't specify an explicit version of the API to be used, but instead leaves it up to the API to determine the version based on the Facebook app used for accessing the API. With this release, it's now possible to specify an explicit version to be used.
List based classes now implement IReadOnlyList<T>
(see 0e533fc
)
The package contains various classes that represent some kind of list. With this release, those classes now all implement the IReadOnlyList<T>
interface.