From 4e29d2e9d4e14d1b3d983a7829369909536942c2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Leo=20Nikkil=C3=A4?= Date: Sun, 14 May 2017 17:14:31 +0300 Subject: [PATCH] Don't include oauth_token twice --- lib/exquickbooks/oauth.ex | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/exquickbooks/oauth.ex b/lib/exquickbooks/oauth.ex index 2499354..47e690e 100644 --- a/lib/exquickbooks/oauth.ex +++ b/lib/exquickbooks/oauth.ex @@ -93,7 +93,6 @@ defmodule ExQuickBooks.OAuth do def get_access_token(request_token = %RequestToken{}, realm_id, verifier) do result = request(:post, "get_access_token", nil, nil, params: [ - {"oauth_token", request_token.token}, {"oauth_verifier", verifier} ]) |> sign_request(request_token)