From 755bce528c2ef41d7ccfe20db9e5ecfc491e9197 Mon Sep 17 00:00:00 2001 From: Nicholas Van Doorn Date: Wed, 24 Feb 2021 14:08:49 -0800 Subject: Put plugin name in API request headers To meet Taxjar's certification requirements, we need to supply a 'plugin' name in each API request header. As such we add this header where the API version header is supplied. Co-authored-by: Noah Silvera --- lib/super_good/solidus_taxjar/api.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/super_good/solidus_taxjar/api.rb b/lib/super_good/solidus_taxjar/api.rb index a1d1af5..5c6ab3e 100644 --- a/lib/super_good/solidus_taxjar/api.rb +++ b/lib/super_good/solidus_taxjar/api.rb @@ -6,7 +6,8 @@ module SuperGood api_key: ENV.fetch("TAXJAR_API_KEY"), api_url: ENV.fetch("TAXJAR_API_URL") { "https://api.taxjar.com" } # Sandbox URL: https://api.sandbox.taxjar.com ).set_api_config('headers', { - 'x-api-version' => '2020-08-07' + 'x-api-version' => '2020-08-07', + 'plugin' => 'supergoodsolidustaxjar' }) end -- cgit v1.2.3