I'm wanting to use Segment's Analytics.js open source package (but not use their hosted solution segment.io) and I noticed that their hosted solution has an integration with Pinterest, but I can't seem to find it in Analytics.js. Can you only get the Pinterest integration through their hosted solution? If not, how can I use it when initializing Analytics.js?
Here is my current initialization (taken from this helpful article)
analytics.load(function () {
analytics.initialize({
'Google Analytics': {
trackingId: '{{ GOOGLE_ANALYTICS_TRACKING_ID }}'
},
'Mixpanel': {
token: '{{ MIXPANEL_TOKEN }}',
people: true
}
});
});