Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/signals/concepts/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ A subscription using a specific attribute key ID, for example a `domain_userid`

Once subscribed, all triggered interventions will be streamed to the consumer application.

For back-end applications using the [Signals Python SDK](https://pypi.org/project/snowplow-signals/), [Signals Node.js SDK](https://www.npmjs.com/package/@snowplow/signals-node), or [Signals API](/docs/signals/connection/index.md#signals-api), subscribe within the application code by passing in the relevant attribute key IDs. For web applications, use the [Signals Interventions plugin](/docs/signals/receive-interventions/index.md) for the JavaScript tracker to subscribe automatically to relevant interventions.
For back-end applications using the [Signals Python SDK](https://pypi.org/project/snowplow-signals/), [Signals Node.js SDK](https://www.npmjs.com/package/@snowplow/signals-node), or [Signals API](/docs/signals/connection/index.md#signals-api), subscribe within the application code by passing in the relevant attribute key IDs. For web applications, use the [Signals browser plugin](/docs/signals/receive-interventions/index.md) for the JavaScript tracker to subscribe automatically to relevant interventions.

### Targeting example

Expand Down
4 changes: 2 additions & 2 deletions docs/signals/receive-interventions/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ subscription.stop()

## Using the browser tracker plugin

For web applications using the Snowplow [browser tracker](/docs/sources/trackers/web-trackers/index.md), you can subscribe to interventions using the [Signals Interventions plugin](https://github.com/snowplow-incubator/signals-browser-plugin).
For web applications using the Snowplow [browser tracker](/docs/sources/trackers/web-trackers/index.md), you can subscribe to interventions using the [Signals browser plugin](https://www.npmjs.com/package/@snowplow/signals-browser-plugin).

The workflow is:
1. Create a Snowplow tracker with the plugin configured
Expand All @@ -62,7 +62,7 @@ import {
SignalsInterventionsPlugin,
addInterventionHandlers,
subscribeToInterventions,
} from '@snowplow/browser-plugin-signals-interventions';
} from '@snowplow/signals-browser-plugin';

// Install the Signals Intervention plugin
newTracker('sp1', '{{collector_url}}', {
Expand Down