Hi folks, do you know if there is any way to add m...
# plugins-general
s
Hi folks, do you know if there is any way to add multiple
advertiser_id
to
tap-tiktok
gthesheep variant? Has anyone tried this before? it accepts only one advertiser id
Copy code
plugins:
  extractors:
  - name: tap-tiktok
    variant: gthesheep
    pip_url: git+<https://github.com/gthesheep/tap-tiktok.git>
    capabilities:
    - state
    - catalog
    - discover
    config:
      advertiser_id: 'XXXXXXXXXXXX'
      start_date: '2022-01-01T00:00:00Z'
p
@Samet it looks like it only accepts a single advertiser_id, you can use plugin inheritance to configure the tap multiple times for multiple advertiser IDs though https://docs.meltano.com/guide/plugin-management#plugin-inheritance. I havent used tiktok myself though. How many advertiser IDs do you have?
s
Yeah, I created child plugins for different advertiser IDs and that works! Since I have only two, no problem. Thanks you Pat!