-
Notifications
You must be signed in to change notification settings - Fork 2.1k
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
Topics FPD module: initial release #8630
Conversation
if (name != null) { | ||
datum.name = name; | ||
} | ||
return datum; |
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.
testing on Chrome beta, when you get topics like this from API,
[{"configVersion":"chrome.1","modelVersion":"2206021246","taxonomyVersion":"1","topic":301,"version":"chrome.1:1:2206021246"},{"configVersion":"chrome.1","modelVersion":"2206021246","taxonomyVersion":"1","topic":3,"version":"chrome.1:1:2206021246"}]
datum looks like this
[{"name":"domain","ext":{"segtax":600,"segclass":"1"},"segment":[{"id":"301"},{"id":"3"}]}]
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.
thank you! just to confirm, "domain" is a placeholder you chose, not the actual value of name
- right?
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.
yes, it was placeholder
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.
segclass should be "2206021246" here @dgirardi , not 1
* Topics FPD module * Small improvements
This reverts commit f567365.
* Topics FPD module * Small improvements
This reverts commit f567365.
Type of change
Description of change
This adds a new
topicsFpdModule
that queries the topics api to populateuser.data
.Since
document.browsingTopics()
always returns an empty list for me, I need volunteers to test this in the real world.Other information
Closes #7968
Depends on #8626
Documentation TBD