Skip to content

Commit

Permalink
Merge pull request #4 from Matatika/fix/access_token_decode_issue
Browse files Browse the repository at this point in the history
Fix headers error access_token being a singer secret string
  • Loading branch information
DanielPDWalker authored Jun 27, 2022
2 parents 21704b7 + cebdb60 commit b845ecf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tap_shopify/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def authenticator(self):
return tap_shopifyAuthenticator(
self,
key="X-Shopify-Access-Token",
value=self.config["access_token"],
value=str(self.config["access_token"]),
location="header",
)

Expand Down

0 comments on commit b845ecf

Please sign in to comment.