You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/connections/spec/page.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
title: 'Spec: Page'
3
3
---
4
4
5
-
The `page` call lets you record whenever a user sees a page of your website, along with any optional properties about the page. Calling `page` or [`screen`](/docs/connections/spec/screen/) in one of our [sources](/docs/connections/sources/) is one of the first steps to getting started with Segment.
5
+
The `page` call lets you record whenever a user sees a page of your website, along with any optional properties about the page. Calling `page` or [`screen`](/docs/connections/spec/screen/) in a Segment [source](/docs/connections/sources/) is one of the first steps to getting started with Segment.
6
6
7
7
{% include components/reference-button.html href="https://university.segment.com/introduction-to-segment/299969?reg=1&referrer=docs" icon="media/academy.svg" title="Segment University: The Page Method" description="Check out our high-level overview of the Page method in Segment University. (Must be logged in to access.)" %}
8
8
@@ -21,7 +21,7 @@ Here's the payload of a typical `page` call with most [common fields](/docs/conn
21
21
}
22
22
```
23
23
24
-
And here's the corresponding Javascript event that would generate the above payload. If you're using Segment's Javascript library, the page name and URL are automatically gathered and passed as properties into the event payload:
24
+
And here's the corresponding JavaScript event that would generate the above payload. If you're using Segment's JavaScript library, the page name and URL are automatically gathered and passed as properties into the event payload:
25
25
26
26
```js
27
27
analytics.page("Retail Page","Home");
@@ -77,11 +77,11 @@ Here's a complete example of a `page` call:
77
77
78
78
Properties are extra pieces of information that describe the page. They can be anything you want.
79
79
80
-
We've reserved some properties that have semantic meanings, and we handle them in special ways. For example, we always expect `path` to be the URL path of a page, and `referrer` to be the URL of the previous page.
80
+
Segment handles properties with semantic meaningsin unique ways. For example, Segment always expect `path` to be a page's URL path, and `referrer` to be the previous page's URL.
81
81
82
82
You should **only use reserved properties for their intended meaning**.
83
83
84
-
Reserved properties we have standardized:
84
+
Reserved properties Segment has standardized:
85
85
86
86
<table>
87
87
<tr>
@@ -150,4 +150,4 @@ The keywords would most likely be the same as, or similar to, the keywords you w
150
150
</tr>
151
151
</table>
152
152
153
-
**Note:** In [analytics.js](/docs/connections/sources/catalog/libraries/website/javascript/), we automatically send the following properties: `title`, `path`, `url`, `referrer`, and `search`.
153
+
**Note:** In [analytics.js](/docs/connections/sources/catalog/libraries/website/javascript/), Segment automatically send the following properties: `title`, `path`, `url`, `referrer`, and `search`.
0 commit comments