VeeFriends.ShopifySync.WhatNot
5.0.71
dotnet add package VeeFriends.ShopifySync.WhatNot --version 5.0.71
NuGet\Install-Package VeeFriends.ShopifySync.WhatNot -Version 5.0.71
<PackageReference Include="VeeFriends.ShopifySync.WhatNot" Version="5.0.71" />
<PackageVersion Include="VeeFriends.ShopifySync.WhatNot" Version="5.0.71" />
<PackageReference Include="VeeFriends.ShopifySync.WhatNot" />
paket add VeeFriends.ShopifySync.WhatNot --version 5.0.71
#r "nuget: VeeFriends.ShopifySync.WhatNot, 5.0.71"
#addin nuget:?package=VeeFriends.ShopifySync.WhatNot&version=5.0.71
#tool nuget:?package=VeeFriends.ShopifySync.WhatNot&version=5.0.71
VeeFriends.ShopifySync 🛍️🔁
VeeFriends.ShopifySync is a .NET library that provides a flexible and extensible framework for synchronizing data between various e-commerce platforms and Shopify. Currently, it supports integration with the WhatNot platform.
Features
- Abstract base classes for creating platform-specific implementations
- GraphQL request builder for easy query construction
- Error handling and custom exception types
- Dependency Injection support
- Asynchronous operations
Installation
Install the VeeFriends.ShopifySync NuGet package in your project:
dotnet add package VeeFriends.ShopifySync
Usage
1. Configuration
First, configure the services in your Startup.cs
or Program.cs
file:
using VeeFriends.ShopifySync.Services;
using VeeFriends.ShopifySync.WhatNot;
public void ConfigureServices(IServiceCollection services)
{
services.ShopifySync()
.AddWhatNot(options =>
{
options.ApiUrl = "https://whatnot-api-url.com";
// Add other WhatNot-specific configuration
});
}
2. Using the WhatNot Seller Platform
Inject the WhatNotSellerPlatform
into your service or controller:
public class MyService
{
private readonly WhatNotSellerPlatform _whatNotPlatform;
public MyService(WhatNotSellerPlatform whatNotPlatform)
{
_whatNotPlatform = whatNotPlatform;
}
public async Task<WhatNotProduct> GetProductAsync(string productId)
{
var requestOptions = new WhatNotRequestOptions
{
AccessToken = "your-access-token"
};
return await _whatNotPlatform.GetProduct(productId, requestOptions);
}
public async Task<WhatNotOrder> GetOrderAsync(string orderId)
{
var requestOptions = new WhatNotRequestOptions
{
AccessToken = "your-access-token"
};
return await _whatNotPlatform.GetOrder(orderId, requestOptions);
}
}
3. Error Handling
The library includes custom error handling. Errors are wrapped in an ErrorModel
and thrown as an ErrorException
:
try
{
var product = await _whatNotPlatform.GetProduct(productId, requestOptions);
}
catch (ErrorException ex)
{
Console.WriteLine($"An error occurred: {ex.Message}");
// Handle the error appropriately
}
Extending the Library
Creating a New Platform Integration
To add support for a new platform:
- Create a new class that inherits from
SellerHttpClient<TRequestOptions>
. - Implement a new
SellerPlatform<TProduct, TOrder, TRequestOptions>
for your platform. - Create platform-specific
ProductModel
andOrderModel
classes. - Add an extension method to
ShopifySyncCollection
for easy configuration.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net9.0 is compatible. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. |
-
net9.0
- VeeFriends.ShopifySync (>= 5.0.71)
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 |
---|---|---|
5.0.71 | 130 | 3/18/2025 |
5.0.70 | 4,190 | 2/6/2025 |
5.0.69 | 145 | 2/6/2025 |
5.0.68 | 205 | 2/5/2025 |
5.0.66 | 121 | 2/5/2025 |
5.0.65 | 488 | 1/30/2025 |
5.0.64 | 1,283 | 1/18/2025 |
5.0.63 | 77 | 1/17/2025 |
5.0.62 | 130 | 1/17/2025 |
5.0.61 | 76 | 1/17/2025 |
5.0.60 | 72 | 1/17/2025 |
5.0.59 | 74 | 1/17/2025 |
5.0.58 | 99 | 1/17/2025 |
5.0.57 | 71 | 1/17/2025 |
5.0.56 | 105 | 1/17/2025 |
5.0.55 | 99 | 1/17/2025 |
5.0.54 | 112 | 1/17/2025 |
5.0.52 | 75 | 1/17/2025 |
5.0.51 | 104 | 1/16/2025 |
5.0.49 | 137 | 1/16/2025 |
5.0.47 | 77 | 1/16/2025 |
5.0.46 | 128 | 1/16/2025 |
5.0.45 | 99 | 1/16/2025 |
5.0.44 | 125 | 1/16/2025 |
5.0.43 | 105 | 1/16/2025 |
5.0.42 | 79 | 1/15/2025 |
5.0.41 | 77 | 1/15/2025 |
5.0.40 | 102 | 1/15/2025 |
5.0.39 | 127 | 1/15/2025 |
5.0.38 | 123 | 1/15/2025 |
5.0.37 | 129 | 1/15/2025 |
5.0.36 | 155 | 1/15/2025 |
5.0.35 | 75 | 1/15/2025 |
5.0.34 | 100 | 1/15/2025 |
5.0.33 | 191 | 1/14/2025 |
5.0.32 | 71 | 1/14/2025 |
5.0.31 | 64 | 1/14/2025 |
5.0.30 | 73 | 1/14/2025 |
5.0.29 | 71 | 1/14/2025 |
5.0.28 | 80 | 1/14/2025 |
5.0.27 | 78 | 1/13/2025 |
5.0.26 | 72 | 1/13/2025 |
5.0.25 | 191 | 1/13/2025 |
5.0.23 | 86 | 1/10/2025 |
5.0.22 | 85 | 1/10/2025 |
5.0.21 | 84 | 1/10/2025 |
5.0.19 | 83 | 1/9/2025 |
5.0.18 | 79 | 1/9/2025 |
5.0.17 | 182 | 1/9/2025 |
5.0.16 | 495 | 1/3/2025 |
5.0.15 | 96 | 1/2/2025 |
5.0.14 | 101 | 1/2/2025 |
5.0.13 | 98 | 1/2/2025 |
5.0.12 | 203 | 12/23/2024 |
5.0.11 | 85 | 12/23/2024 |
5.0.10 | 90 | 12/23/2024 |
5.0.9 | 89 | 12/23/2024 |
5.0.8 | 95 | 12/23/2024 |
5.0.7 | 362 | 12/13/2024 |
5.0.6 | 93 | 12/13/2024 |
5.0.5 | 104 | 12/12/2024 |
5.0.4 | 93 | 12/12/2024 |
5.0.3 | 96 | 12/12/2024 |
5.0.2 | 93 | 12/12/2024 |
5.0.1 | 1,345 | 12/11/2024 |
1.0.33 | 95 | 12/11/2024 |
1.0.32 | 90 | 12/11/2024 |
1.0.31 | 90 | 12/11/2024 |
1.0.30 | 4,179 | 11/12/2024 |
1.0.29 | 99 | 11/12/2024 |
1.0.28 | 2,359 | 11/1/2024 |
1.0.27 | 742 | 11/1/2024 |
1.0.26 | 91 | 10/31/2024 |
1.0.25 | 89 | 10/31/2024 |
1.0.24 | 379 | 10/30/2024 |
1.0.23 | 203 | 10/30/2024 |
1.0.22 | 188 | 10/30/2024 |
1.0.20 | 330 | 10/29/2024 |
1.0.19 | 207 | 10/29/2024 |
1.0.18 | 156 | 10/28/2024 |
1.0.17 | 112 | 10/28/2024 |
1.0.16 | 103 | 10/28/2024 |
1.0.15 | 97 | 10/28/2024 |
1.0.14 | 102 | 10/28/2024 |
1.0.13 | 108 | 10/25/2024 |
1.0.12 | 124 | 10/24/2024 |
1.0.11 | 107 | 10/19/2024 |
1.0.10 | 131 | 10/18/2024 |
1.0.9 | 124 | 10/18/2024 |
1.0.8 | 133 | 10/18/2024 |
1.0.7 | 151 | 10/18/2024 |