From 0e304981c5c2fa9d40c1e23d5f1b3dabe25857c0 Mon Sep 17 00:00:00 2001 From: "Todd A. Wood" Date: Tue, 21 Jul 2020 13:34:27 -0500 Subject: [PATCH 1/2] Removed trailing slash from api_endpoint as it caused 404 calling https://api.goshippo.com//tracks probably due to infratstructure hosting changes --- Shippo/APIResource.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Shippo/APIResource.cs b/Shippo/APIResource.cs index b6256e0..c6438a1 100644 --- a/Shippo/APIResource.cs +++ b/Shippo/APIResource.cs @@ -31,7 +31,7 @@ namespace Shippo { public class APIResource { - public static readonly string api_endpoint = "https://api.goshippo.com/"; + public static readonly string api_endpoint = "https://api.goshippo.com"; static readonly string user_agent = "Shippo/v1 CSharpBindings/1.0"; public static readonly int RatesReqTimeout = 25; public static readonly int TransactionReqTimeout = 25; From 9c36a884ad15996677eeb548f8a9442d1d25f871 Mon Sep 17 00:00:00 2001 From: Stephanie Song Date: Wed, 29 Jul 2020 18:12:58 -0700 Subject: [PATCH 2/2] update version to 2.1.15 --- Shippo/Shippo.csproj | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Shippo/Shippo.csproj b/Shippo/Shippo.csproj index d677644..4b18e47 100644 --- a/Shippo/Shippo.csproj +++ b/Shippo/Shippo.csproj @@ -2,14 +2,14 @@ net45;net40 - 2.1.14 + 2.1.15 Shippo client library .NET library which integrates with Shippo Multi Carrier Shipping API. This library provides access to Shippo (goshippo.com) API capabilities. Including label generation, rating, tracking and more. Shippo Shipping API client Library (USPS, FedEx, UPS, and more) https://github.com/goshippo/shippo-csharp-client/ https://github.com/goshippo/shippo-csharp-client/ USPS Fedex UPS API Shippo - Added support for OAuth Token with net40 and net45 + Bug fix for extra slash in Shippo API URL Github false