Hi first time here, I was trying out <tap-slack> w...
# troubleshooting
p
Hi first time here, I was trying out tap-slack with scopes
channels:history channels:read groups:history groups:read im:history im:read mpim:history mpim:read users:read users:read.email
and following config,
Copy code
- name: tap-slack
        select:
        - messages.*
        config:
          channel_types: ["public_channel", "private_channel", "mpim"]
it's working with following 3 channel_types but breaking with "im" added. and the error message isn't showing any specific issue, can someone help me with this please? 🙂
r
Can you run
Copy code
meltano invoke tap-slack
?
p
looks fine
r
Your initial log shows "Extractor failed", so I'm surprised the issue does show when you run the extractor in isolation... What command were you running before?
p
meltano --log-level=debug run tap-slack target-mongodb
r
Try
Copy code
meltano invoke tap-slack > tap.out
and then
Copy code
cat tap.out | meltano invoke target-mongodb
Looking at your previous screenshot again, it doesn't look like any
RECORD
messages were emitted (i.e. no data). Maybe that's your issue?
You would be able to verify that looking at the contents of
tap.out
from the previous command also.
p
sorry my miss, the api_key was wrong earlier. with the correct api_key, invoke tap_slack got an error @Reuben (Matatika)
but as I can see the error now, I could debug it, thanks
👍 2