This repository was archived by the owner on Dec 11, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Add track function and update page function. #10
Merged
Merged
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
b6a9ae8
added `track` and `screen` handlers; updated handlers for new Appcues…
gamache 5837c20
removed screen; made track, identify, and page simple passthroughs
gamache 9225771
added our Segment integration documentation
gamache b9bce32
Merge pull request #1 from appcues/feature/implement-track-and-screen
gamache 03fa4d5
improved docs
gamache 118e6eb
Merge pull request #2 from appcues/feature/docs-update
gamache 0718a9e
docs update
gamache b32b24d
Merge branch 'feature/docs-update'
gamache 73874ec
Merge branch 'master' of https://github.com/segment-integrations/anal…
rayd 0b95070
Test that attributes are passed into Appcues.page call.
rayd File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,117 @@ | ||
Create personalized user onboarding flows without changing any code | ||
that will improve your product's adoption and retention rates. | ||
[Visit Website](http://appcues.com) | ||
|
||
Our Appcues integration code is [open-source on | ||
GitHub](https://github.com/appcues/analytics.js-integration-appcues) | ||
if you want to check it out. | ||
|
||
## Getting Started | ||
|
||
To install Appcues via Segment, add your Appcues ID and API key | ||
(found on your [Appcues account page](https://my.appcues.com/account)) | ||
to your Segment integrations dashboard. | ||
|
||
|
||
## JS and Server-side Integrations | ||
|
||
Appcues provides two Segment integrations. | ||
|
||
The first, our JavaScript integration with Segment's `analytics.js`, | ||
is the traditional way to use Appcues as part of the Segment platform. | ||
Calls to `analytics.identify` are used to indicate user properties, | ||
and `analytics.page` or `analytics.track` will send events to the | ||
Appcues API. | ||
|
||
Separately, Appcues offers a server-side integration with Segment, | ||
which is useful if you'd like to send user profile or event data to | ||
Appcues from another Segment partner service. (Note that this is | ||
different from [Segment Sources](https://segment.com/sources), which | ||
allows you to bring multiple sources of Segment data together in your | ||
own data warehouse.) | ||
|
||
The server-side integration may be used simultaneously with the JS | ||
integration. In many cases, this is preferable to routing all data | ||
through the JS integration. | ||
|
||
The user profile and event data received through Appcues' | ||
server-side Segment integration can be used to segment | ||
and target Appcues flows, just like data received from the JS | ||
integration. | ||
|
||
For example, using the server-side integration, customer profile and | ||
event data could be directed from a CRM tool into the Appcues platform. | ||
This data could then be used for content targeting and user | ||
segmentation in the Appcues content editor, alongside data from | ||
our `analytics.js` integration. | ||
|
||
|
||
## JavaScript API | ||
|
||
### Identify | ||
|
||
When you `identify` on `analytics.js`, we call `Appcues.identify`. This | ||
is the preferred method of using and targeting on user properties. | ||
|
||
To get the most out of Appcues, you’ll want to send as much user data | ||
as possible in the identify call. Properties are used to target experiences | ||
to specific users and personalize content. Most Appcues customers send | ||
properties that fall into a few groups: | ||
|
||
* Properties to target based on broad classifications such as `role` | ||
or `userType` | ||
* Properties to personalize Appcues content such as `name`, `firstName` | ||
or `company` | ||
* Properties to target based on user lifecycle such as `createdAt` (date) | ||
or usage metrics such as `numTasksComplete` | ||
|
||
### Track | ||
|
||
Calls to `analytics.track` invoke `Appcues.track` as well. This will | ||
send event data to the Appcues platform, where it can be used for future | ||
content triggering. | ||
|
||
### Page | ||
|
||
Appcues will check to see if a user qualifies for an experience every time | ||
the page changes. When you first call `page` using `analytics.js`, | ||
`Appcues.start` checks if there are any current flows for the user and | ||
loads them if necessary. | ||
|
||
|
||
## Appcues Features | ||
|
||
### Whitelisted Domains | ||
|
||
By default, Appcues will target based on the path of the URL. So if we | ||
created an Appcues experience and targeted it to `/integrations`, | ||
it would appear wherever the embed script is installed with that URL path, | ||
like appcues.com/integrations and my.appcues.com/integrations. If your | ||
analytics.js script is installed on multiple domains (e.g. your marketing | ||
site and your web app), you’ll want to use Appcues whitelisted domains when | ||
targeting your experience. | ||
|
||
### Sending Appcues events to other Segment partner services | ||
|
||
Want to read Appcues events in your 3rd party analytics or marketing | ||
automation tool? Appcues supports sending events to other tools on the | ||
Segment platform. These events will be sent as track calls to the other | ||
integrations you’ve turned on. A partial list of Appcues content | ||
lifecycle events that can be tracked: | ||
|
||
* `flow_shown` | ||
* `flow_skipped` | ||
* `flow_finished` | ||
* `flow_form_submission` | ||
* `form_field_submission` | ||
* `step_activated` | ||
* `hotspots_shown` | ||
* `hotspots_skipped` | ||
* `hotspots_completed` | ||
* `hotspot_activated` | ||
* `coachmarks_shown` | ||
* `coachmarks_completed` | ||
|
||
To enable this feature, go to the Integrations Settings in Appcues and | ||
click “Activate” under the Segment integration. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should verify
someAttr: true
is sent as well.