Skip to content

Commit 09c844f

Browse files
Merge pull request #1088 from segmentio/dj/doc1
samesite explanation
2 parents 2b6e0a4 + 277180c commit 09c844f

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

src/connections/sources/catalog/libraries/website/javascript/troubleshooting.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,15 @@ console.log(JSON.stringify({ x: undefined, y: 6 }));
103103
// expected output: "{"y":6}"
104104
```
105105

106+
## Why am I seeing a "SameSite" warning?
107+
108+
If you see a warning like the following, it could have one of several causes:
109+
"A cookie associated with a cross-site resource at http://segment.com/ was set without the `SameSite` attribute [...]"
110+
111+
Segment correctly sets cookies with the 'SameSite' attribute with Analytics.js.
112+
113+
If you see this warning, it is because you previously visited http://segment.com, and are getting the warning due to unrelated cookies. To verify that this is the issue, visit your page in Incognito Mode and confirm that the warning no longer occurs. Your users won't see this warning unless they _also_ visited http://segment.com.
114+
106115

107116
### Can I overwrite the context fields?
108117

0 commit comments

Comments
 (0)