Yelp.Api.Web 1.4.0

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

// Install Yelp.Api.Web as a Cake Tool
#tool nuget:?package=Yelp.Api.Web&version=1.4.0

A library to be used by websites to interact with Yelp Fusion (v3.0) API.

Product 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.1 is compatible.  netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
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
1.4.5 3,222 1/10/2019
1.4.4 967 11/2/2018
1.4.3 826 10/4/2018
1.4.1 807 10/1/2018
1.4.0 825 9/26/2018
1.3.4 875 9/12/2018
1.3.3 1,048 7/27/2017
1.3.2 953 7/16/2017
1.3.1 1,021 6/19/2017
1.3.0 1,194 6/19/2017

1.4.0 - Tuesday, Sept 25th, 2018
- Fixed multithreading for GetBusinessAsyncInParallel and GetGraphQlInChunksAsyncInParallel so they actually send calls in parallel.  Consumer can also set how many threads they use, default is 2.
- Fixed GetGraphQlInChunksAsync so it actually makes calls in series as intended.
- Increased default size of businesses sent through GraphQl calls from 5 to 25 due to improvements to the Yelp API.  This can also be changed by the consumer.
- Calls to Yelp API now have mechanics to automatically retry if they fail due to endpoint flooding.  Use the ConnectionRetrySettings class to change these settings.
- This package will now throw AccessLimitExceptions if Yelp returns ACCESS_LIMIT_REACHED (for when you go over your daily amount of calls allowed).
- General clean up and bug fixes.
- Enhancements, clarifications, and fixes to the Example project.

1.3.4 - Tuesday, Sept 11th, 2018
Pull latest changes from base project so Yelp Authentication works again.  Minor example project clean up.

1.3.3 - Thursday, July 27th, 2017
Fix bug that was making GraphQL calls with wrong Content-Type.  Updates to Yelp.Api require Content-Type: application/graphql now when making GraphQL calls.

1.3.2 - Friday, July 15th, 2017
Fix bug when converting businesses that have null coordinates from Yelp.

1.3.1 - Monday, June 19, 2017
Added IsSpecialFlag to BusinessResponse model. (Removed in v1.3.4)

1.3.0 - Monday, June 19, 2017
First release as a Web version of Yelp.Api.