-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add detail to readme.md
- Loading branch information
Showing
1 changed file
with
4 additions
and
2 deletions.
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 |
---|---|---|
@@ -1,2 +1,4 @@ | ||
# cookieburra | ||
JS library to share local storage info across separate domains. Used as a temporary workaround when back-end systems are not compatible to share user info. | ||
# Cookieburra | ||
JS library to share information (local storage and 1st party cookies) across domains. | ||
|
||
Used in scenarios where user spans whitelisted partner domains outside of rakuten.co.jp as part of a single “rakuten session”. For remarketing, personalization, and A/B testing, we want to share information about user to the partner page, but lacked back-end support to share login data status directly. Cookieburra is two JS libraries, one implemented on the partner (controller) one that sends a request to the library on rakuten.co.jp (receiver) that responds to the request for whitelisted domains and shares the requested info from cookie and local storage data. |