-
Notifications
You must be signed in to change notification settings - Fork 233
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Accessing interest groups from the same site #245
base: main
Are you sure you want to change the base?
Conversation
FLEDGE.md
Outdated
@@ -299,6 +299,7 @@ The arguments to `generateBid()` are: | |||
'prevWins': [[time1,ad1],[time2,ad2],...], | |||
} | |||
``` | |||
* sameSiteInterestGroups: if the user is added to `interestGroup` on a single site, this argement contains a list of all other interest group objects added by that site; if the user is added to `interestGroup` on mutliple sites, this argument will be empty. |
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.
Empty as in the empty list?
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.
argement -> arguement
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.
Fixed both, thanks Jeff!
I think there is a potential leak here. Imagine I operate sites A and B. On site A I add users to two IGs: IG_BOTH and IG_A. On site B I also add users to two IGs: IG_BOTH and IG_B. In (I don't know whether this leak is acceptable, but we should think about it.) |
FLEDGE.md
Outdated
@@ -299,7 +299,7 @@ The arguments to `generateBid()` are: | |||
'prevWins': [[time1,ad1],[time2,ad2],...], | |||
} | |||
``` | |||
* sameSiteInterestGroups: if the user is added to `interestGroup` on a single site, this argement contains a list of all other interest group objects added by that site; if the user is added to `interestGroup` on mutliple sites, this argument will be empty. | |||
* sameSiteInterestGroups: if the user is added to `interestGroup` on a single site, this argument contains a list of all other interest group objects added by that site; if the user is added to `interestGroup` on mutliple sites, this argument will be a empty list. |
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.
nit/typos:
- Capital I for the first "if"
- added by that site -> added on that site
- Instead of the whole phrase "if the user ....", maybe just say "otherwise"?
- mutliple -> multiple
- a empty list -> an empty list
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.
fixed, thanks.
Actually, this leak exists today with (A buyer could transfer even more information by having site |
|
This pull request has been open for a long time but I don't think it addresses my comment. Can I ask that it close it until we have a solution to the issue that I raised? |
Fixes #162