Hello :slightly_smiling_face: have any of you al...
# troubleshooting
k
Hello 🙂 have any of you already worked with the FixerIO Extractor? Although it should be very easy, i am too stupid to make the connection 😄 I have set the API Access Key, base as EUR, start_date as 2025-01-01 But I always get an error, currently the following:
Copy code
Plugin configuration is invalid
Catalog discovery failed: invalid catalog: Extra data: line 2 column 1 (char 201)
✅ 1
a
Could you share your meltano.yml, scrubbing any access keys etc? There is an example config here if that helps? https://github.com/singer-io/tap-fixerio/blob/master/config.sample.json
k
Thank Andy, sure:
access key is not stored in yml for security reason
a
Hmm that all looks above board to me, maybe someone with experience with the tap can help, sorry.
k
Thanks a lot andy 🙂 May someone else have an idea
e
can you add this to your plugin definition:
Copy code
plugins:
  extractors:
  - name: tap-fixerio
    capabilities: [state]  # <- this right here
(if that fixes the issue, we need to update the plugin in Hub)
k
Hey @Edgar Ramírez (Arch.dev) yes now it works, thanks a lot
Copy code
plugins:
  extractors:
  - name: tap-fixerio
    capabilities: [state] 
    variant: singer-io
    pip_url: tap-fixerio
    config:
      base: EUR
      start_date: '2025-02-10'
      symbols: 
        - USD
        - GBP
        - JPY
e
Awesome!