VeeFriends.ShopifySync 1.0.30

dotnet add package VeeFriends.ShopifySync --version 1.0.30                
NuGet\Install-Package VeeFriends.ShopifySync -Version 1.0.30                
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="VeeFriends.ShopifySync" Version="1.0.30" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add VeeFriends.ShopifySync --version 1.0.30                
#r "nuget: VeeFriends.ShopifySync, 1.0.30"                
#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 VeeFriends.ShopifySync as a Cake Addin
#addin nuget:?package=VeeFriends.ShopifySync&version=1.0.30

// Install VeeFriends.ShopifySync as a Cake Tool
#tool nuget:?package=VeeFriends.ShopifySync&version=1.0.30                

VeeFriends.ShopifySync 🛍️🔁

NuGet Version

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:

  1. Create a new class that inherits from SellerHttpClient<TRequestOptions>.
  2. Implement a new SellerPlatform<TProduct, TOrder, TRequestOptions> for your platform.
  3. Create platform-specific ProductModel and OrderModel classes.
  4. Add an extension method to ShopifySyncCollection for easy configuration.
Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (2)

Showing the top 2 NuGet packages that depend on VeeFriends.ShopifySync:

Package Downloads
VeeFriends.ShopifySync.WhatNot

Data as it pertains to VeeFriends.

VeeFriends.ShopifySync.EBay

Data as it pertains to VeeFriends.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.30 84 11/12/2024
1.0.29 20 11/12/2024
1.0.28 2,323 11/1/2024
1.0.27 722 11/1/2024
1.0.26 82 10/31/2024
1.0.25 77 10/31/2024
1.0.24 359 10/30/2024
1.0.23 186 10/30/2024
1.0.22 173 10/30/2024
1.0.20 336 10/29/2024
1.0.19 194 10/29/2024
1.0.18 128 10/28/2024
1.0.17 94 10/28/2024
1.0.16 84 10/28/2024
1.0.15 87 10/28/2024
1.0.14 81 10/28/2024
1.0.13 86 10/25/2024
1.0.12 106 10/24/2024
1.0.11 99 10/19/2024
1.0.10 117 10/18/2024
1.0.9 115 10/18/2024
1.0.8 117 10/18/2024
1.0.7 101 10/18/2024