ea2b6f4758 | ||
---|---|---|
Dockerfile | ||
LICENSE | ||
README.md | ||
circle.yml | ||
offyx.py | ||
requirements.txt | ||
transform.cloudformation.yaml | ||
ua.py | ||
version.json |
README.md
Offyx
engagement metrics aggregator for Firefox Directory Links
compliant with mozilla-services/Dockerflow
Links
There are a few API endpoints we care about:
- /v2/links/view
- /v2/links/click
- /v3/links/view
- /v3/links/click
- /v3/links/activity-stream
- /v3/links/ping-centre
- /v4/links/activity-stream
/v2/links/view
The view
endpoint is called each time a new tab page is opened. An asynchronous ping is sent from Firefox to Mozilla servers. The goal is to capture the impression data for tiles, in order to calculate reach and click-through rates (CTR).
Method: POST
Example Payload:
{
"view": 1,
"locale": "en-US",
"tiles": [
{
"id": 8,
"pin": true,
"pos": 2,
"score": 2000,
"url": ""
},
{
"id": 12
}
]
}
Parameters:
view
: the value of thisaction
is the index of the last tile intiles
visible in the user's viewporttiles
: an ordered array of tiles representative of what is in a new tab pageid
: a tile ID. provided in the fetch payload asdirectoryId
; absent for history tilespin
: signals that the tile is pinned in the UA; absent for unpinned tilespos
: denotes the index of the tile in the new tab page; absent if the value is the same as its array index oftiles
score
: frecency for the tile; absent for frecencies under 5000
locale
: User Agent locale setting
/v2/links/click
The click
endpoint captures any click interaction with the tile. This includes click
, block
, pin
, unpin
, sponsored
, and sponsored_link
.
When the user interacts with the tile, an asynchronous ping is sent to Mozilla servers. This is to measure a click event.
Positive events (click
, pin
) and negative events (block
, unpin
) are all very important. They can tell us that certain tiles are not appropriate or that people do not like them.
Method: POST
Example Payload:
{
"click": 1,
"locale": "en-US",
"tiles": [
{
"id": 8,
"pin": true,
"pos": 2,
"score": 2000,
"url": ""
},
{
"id": 12
},
...
]
}
Parameters:
click
/block
/pin
/unpin
/sponsored
/sponsored_link
: Only one of these can happen in one payload. The value of thisaction
is the index intiles
for which this action applies- The other parameters - i.e. the
locale
andtiles
params - are the same as for/v2/links/view
.
/v3/links/view
unchanged from /v2/links/view
/v3/links/click
unchanged from /v2/links/click
/v3/links/activity-stream
The activity-stream
endpoint captures any event takes place in the Activity Stream Addon.
Method: POST
Example Payload:
{
"action": "activity_stream_session",
"client_id": "some_client_id",
"addon_version": "1.0",
"tab_id": 1,
"load_reason": "newtab", #["newtab", "focus", "restore"]
"source": "activity_stream", #["recent_links", "recent_bookmarks", "frecent_links", "top_sites", "spotlight"]
"search": 0, # indicates a search was performed
"max_scroll_depth": 100,
"click_position": 2, #[TBD, index of object clicked on a click event or -1? or 2D coordinates e.g. 200x400?]
"total_bookmarks": 5,
"total_history_size": 1000,
"session_duration": 2000,
"unload_reason": "click" # ["click", "search", "close", "unfocus"]
}
/v3/links/ping-centre
The ping-centre
endpoint captures any event defined in the Ping-centre repo.
Method: POST
Example Payload:
{
"topic": "activity_stream_mobile_session",
"client_id": "some_client_id",
"addon_version": "1.0",
"tab_id": 1,
"load_reason": "newtab",
"source": "activity_stream",
"search": 0, # indicates a search was performed
"max_scroll_depth": 100,
"click_position": 2,
"total_bookmarks": 5,
"total_history_size": 1000,
"session_duration": 2000,
"unload_reason": "click"
}
/v4/links/activity-stream
unchanged from /v3/links/activity-stream