Hassie.NET.API.NewsAPI
2.2.1
dotnet add package Hassie.NET.API.NewsAPI --version 2.2.1
NuGet\Install-Package Hassie.NET.API.NewsAPI -Version 2.2.1
<PackageReference Include="Hassie.NET.API.NewsAPI" Version="2.2.1" />
paket add Hassie.NET.API.NewsAPI --version 2.2.1
#r "nuget: Hassie.NET.API.NewsAPI, 2.2.1"
// Install Hassie.NET.API.NewsAPI as a Cake Addin #addin nuget:?package=Hassie.NET.API.NewsAPI&version=2.2.1 // Install Hassie.NET.API.NewsAPI as a Cake Tool #tool nuget:?package=Hassie.NET.API.NewsAPI&version=2.2.1
NewsAPI.NET
NewsAPI.NET is a asynchronous API wrapper around News API. It is based on their new v2 API and is written in .NET Standard 1.1.
NuGet
This library is available on NuGet, under the package name Hassie.NET.API.NewsAPI. The current version is 2.2.1.
Example usage
INewsClient newsClient = new ClientBuilder()
{
ApiKey = "Your API Key";
}
.Build();
INewsArticles newsArticles = await newsClient.GetTopHeadlines(new TopHeadlinesBuilder()
.WithCountryQuery(Country.GB)
.WithLanguageQuery(Language.EN)
.WithSourcesQuery(Source.BBC_NEWS, Source.BBC_SPORT)
.Build());
foreach (INewsArticle article in newsArticles)
{
Console.WriteLine(article.Author);
Console.WriteLine(article.Description);
Console.WriteLine(article.ImageURL);
Console.WriteLine(article.PublishTime);
Console.WriteLine(article.SourceName);
Console.WriteLine(article.Title);
Console.WriteLine(article.URL);
}
License
Copyright ©2018 Hassie.
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
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 | netcoreapp1.0 was computed. netcoreapp1.1 was computed. netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard1.1 is compatible. netstandard1.2 was computed. netstandard1.3 was computed. netstandard1.4 was computed. netstandard1.5 was computed. netstandard1.6 was computed. netstandard2.0 was computed. netstandard2.1 was computed. |
.NET Framework | net45 was computed. net451 was computed. net452 was computed. net46 was computed. net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen30 was computed. tizen40 was computed. tizen60 was computed. |
Universal Windows Platform | uap was computed. uap10.0 was computed. |
Windows Phone | wpa81 was computed. |
Windows Store | netcore was computed. netcore45 was computed. netcore451 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 1.1
- NETStandard.Library (>= 1.6.1)
- Newtonsoft.Json (>= 10.0.3)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version 2.2.1
* Fixed bug when adding a search query with a query builder.
Version 2.2.0
* Implemented Everything endpoint. Note that for the query parameter, you must provide the query in URL encoded format.
Version 2.1.0
* INewsArticles and INewsSources now return a read only list of INewsArticle and INewsSource respectively, you no longer have to use the Articles/Sources property within the interface to retrieve the list.
Version 2.0.1
* Bug fixes.
Version 2.0.0
* Rewrote API wraper to use builder pattern.
* Implemented Sources endpoint.
* Please refer to documentation to see the updated example usages.