CMS365.EbaySharp
6.0.0
See the version list below for details.
dotnet add package CMS365.EbaySharp --version 6.0.0
NuGet\Install-Package CMS365.EbaySharp -Version 6.0.0
<PackageReference Include="CMS365.EbaySharp" Version="6.0.0" />
paket add CMS365.EbaySharp --version 6.0.0
#r "nuget: CMS365.EbaySharp, 6.0.0"
// Install CMS365.EbaySharp as a Cake Addin #addin nuget:?package=CMS365.EbaySharp&version=6.0.0 // Install CMS365.EbaySharp as a Cake Tool #tool nuget:?package=CMS365.EbaySharp&version=6.0.0
EbaySharp: A .NET wrapper library for eBay REST API.
EbaySharp is a .NET library that enables you to authenticate and make REST API calls to eBay. It's used for creating listings and managing orders using C# and .NET
Installation
EbaySharp is available on NuGet. Use the package manager console in Visual Studio to install it:
Install-Package CMS365.EbaySharp
API support
EbaySharp version | eBay REST API version |
---|---|
1.0.X | Inventory API 1.17.2 |
Metadata API v1.7.1 | |
Taxonomy API v1.0.1 |
EbaySharp currently supports the following Ebay REST APIs:
- Access and Security
- Using the EbaySharp
Access and Security
Create an account here https://developer.ebay.com/my/keys and generate keys for production.
For example:
Navigate to user tokens https://developer.ebay.com/my/auth/?env=production&index=0 and select following options.
From the same page, generate the ebay redirect URL (called RU)
Copy the URL of the field "Your branded eBay Production Sign In (OAuth)" and open in a new browser in private mode and also save a copy of the URL for future use. Log in with your store user ID and password and you will be redirected to the following page
Copy the URL of the thank you page and assign it to a variable called "secureURL" and execute the following function.
public async Task<string> GetRefreshToken()
{
string secureURL="replace with the URL of the thank you page";
EbaySharp.Controllers.IdentityController identityController = new EbaySharp.Controllers.IDentityController();
string refreshToken = await IdentityController.GetRefreshToken(ReplaceYourClientID, ReplaceYourClientSecret,
, secureURL, Replace with RU);
}
This method returns a refresh token which is valID for 18 months. You will need to re run this function after 18 months when refresh token has expired. We will use the refresh token and generate an access token.
IdentityController identityController=new IdentityController();
var clientCredentials = await identityController.GetClientCredentials(ReplaceYourClientID, ReplaceYourClientSecret, ReplaceWithRefreshToken , ReplaceWithScopes);
This method now gives you ClientCredentialsResponse object which contains an access token.
Using the EbaySharp
Initialize the instance with the access token.
EbayController ebayController = new EbayController(clientCredentials.AccessToken);
Sell
Inventory
You can see a list of Inventory methods here
Listing
Bulk migrate listings
If you have already created your listing using old API (for example .NET C# SDK), you will need to migrate all listing to new REST API. You can find more detail here
BulkMigrateListingRequest bulkMigrateListingRequest = new BulkMigrateListingRequest()
{
Requests = new BulkMigrateListingRequestItem[]
{
new BulkMigrateListingRequestItem(){ListingID = "21432432432" },
new BulkMigrateListingRequestItem(){ListingID = "78658678678" }
}
});
EbaySharp.Controllers.EbayController ebayController = new EbaySharp.Controllers.EbayController(clientCredentials.AccessToken);
BulkMigrateListingResponse bulkMigrateListingResponse = await ebayController.BulkMigrate(bulkMigrateListingRequest);
Inventory Item
Get inventory items
You can find more detail here
EbaySharp.Controllers.EbayController ebayController = new EbaySharp.Controllers.EbayController(clientCredentials.AccessToken);
InventoryItemsList inventoryItemsList = await ebayController.GetInventoryItems(limit, offset);
Get inventory item
You can find more detail here
EbaySharp.Controllers.EbayController ebayController = new EbaySharp.Controllers.EbayController(clientCredentials.AccessToken);
InventoryItem inventoryItem = await ebayController.GetInventoryItem(SKU);
Delete inventory item
You can find more detail here
EbaySharp.Controllers.EbayController ebayController = new EbaySharp.Controllers.EbayController(clientCredentials.AccessToken);
await ebayController.DeleteInventoryItem(SKU);
Inventory Location
Get inventory locations
You can find more detail here
EbaySharp.Controllers.EbayController ebayController = new EbaySharp.Controllers.EbayController(clientCredentials.AccessToken);
InventoryLocations inventoryLocations = await ebayController.GetInventoryLocations(limit, offset);
Get inventory location
You can find more detail here
EbaySharp.Controllers.EbayController ebayController = new EbaySharp.Controllers.EbayController(clientCredentials.AccessToken);
InventoryLocation inventoryLocation = await ebayController.GetInventoryLocation(merchantLocationKey);
Create inventory location
You can find more detail here
await ebayController.CreateInventoryLocation(new InventoryLocation()
{
MerchantLocationKey = merchantLocationKey,
LocationTypes = new List<StoreTypeEnum>() { StoreTypeEnum.WAREHOUSE },
MerchantLocationStatus = StatusEnum.ENABLED,
Location = new Location()
{
Address = new Address()
{
PostalCode = "3698",
Country = CountryCodeEnum.AU
}
}
});
Delete inventory location
You can find more detail here
await ebayController.DeleteInventoryLocation(merchantLocationKey);
Offer
Get offers
You can find more detail here
EbaySharp.Controllers.EbayController ebayController = new EbaySharp.Controllers.EbayController(clientCredentials.AccessToken);
OffersList offersList = await ebayController.GetOffers(SKU);
Get offer
You can find more detail here
EbaySharp.Controllers.EbayController ebayController = new EbaySharp.Controllers.EbayController(clientCredentials.AccessToken);
Offer offer = await ebayController.GetOffer(offerID);
Metadata
You can see a list of Metadata methods here
Marketplace
Get return policies
You need to pass MarketplaceID, please visit here for supported market places.
ReturnPoliciesList returnPoliciesList = await ebayController.GetReturnPolicies("EBAY_US");
Commerce
Taxonomy
You can see a list of Taxonomy methods here
Category Tree
Get default category tree ID
You need to pass MarketplaceID, please visit here for supported market places.
CategoryTreeID categoryTreeID = await ebayController.GetDefaultCategoryTreeID("EBAY_US");
Get category suggestions
You need to pass a Category Tree ID and the product title you are searching categories for.
CategorySuggestionsList categorySuggestionsList = await ebayController.GetCategorySuggestions(15, "I am a table, look for me");
Get category tree
You need to pass a Category Tree ID.
CategoryTree categoryTree = await ebayController.GetCategoryTree(15);
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net6.0 is compatible. 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. |
-
net6.0
- No dependencies.
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 |
---|---|---|
8.1.1 | 91 | 10/21/2024 |
8.1.0 | 122 | 8/3/2024 |
8.0.0.1 | 92 | 7/14/2024 |
8.0.0 | 77 | 7/14/2024 |
6.6.6.1 | 70 | 7/14/2024 |
6.6.6 | 103 | 7/8/2024 |
6.6.5 | 81 | 7/2/2024 |
6.6.4 | 110 | 6/27/2024 |
6.6.3 | 113 | 6/6/2024 |
6.6.2 | 109 | 6/4/2024 |
6.6.1 | 116 | 5/26/2024 |
6.5.1 | 133 | 3/22/2024 |
6.5.0 | 111 | 3/1/2024 |
6.4.0 | 104 | 2/17/2024 |
6.3.0 | 104 | 2/14/2024 |
6.2.1 | 107 | 2/2/2024 |
6.2.0 | 97 | 2/2/2024 |
6.1.0 | 101 | 1/29/2024 |
6.0.1 | 89 | 1/27/2024 |
6.0.0 | 87 | 1/26/2024 |
1.0.10 | 87 | 1/25/2024 |
1.0.9 | 102 | 1/23/2024 |
1.0.8 | 102 | 1/22/2024 |
1.0.7 | 96 | 1/22/2024 |
1.0.6 | 94 | 1/22/2024 |
1.0.5 | 97 | 1/22/2024 |
1.0.4 | 100 | 1/19/2024 |
1.0.3 | 126 | 1/14/2024 |
1.0.2 | 113 | 1/13/2024 |
1.0.1 | 1,341 | 1/13/2024 |